$schema: http://json-schema.org/draft-07/schema#
$ref: #/definitions/SageCell
definitions
SageCell
- Type:
object
- Properties
-
code
required
- Type:
string
- Type:
-
language
required
- Type:
string
- Type:
-
fontSize
required
- Type:
number
- Type:
-
theme
required
- Type:
string
- Type:
-
kernel
required
- Type:
string
- Type:
-
privateMessage
required
- Type:
array
- Items
- Type:
object
- Properties
- userId
required
- Type:
string
- Type:
- message
required
- Type:
string
- Type:
- userId
- Type:
-
availableKernels
required
- Type:
array
- Items
- Type:
object
- Properties
- key
required
- Type:
string
- Type:
- value
- key
- Type:
-
output
required
- Type:
string
- Type:
-
executeInfo
required
- Type:
object
- Properties
- executeFunc
required
- Type:
string
- Type:
- params
- executeFunc
- Type:
-
default values
{
"code": "",
"language": "python",
"fontSize": 14,
"theme": "xcode",
"kernel": "",
"output": "",
"privateMessage": [],
"availableKernels": [],
"executeInfo": {
"executeFunc": "",
"params": {}
}
}