Schema panel_node
|
|
|
|
Diagram
|
|
Type |
object |
Properties
|
|
Additional Properties |
false |
Used by
|
|
Source
|
"panel_node": {
"type": "object",
"additionalProperties": false,
"required": [
"type",
"attrs",
"content"
],
"properties": {
"type": {
"enum": ["panel"]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"required": ["panelType"],
"properties": {}
},
"content": {
"type": "array",
"minItems": 1,
"items": {}
}
}
}
|
|
|
|
|
|
|
Schema type
Schema attrs
|
|
|
|
Diagram
|
|
Type |
object |
Properties
|
|
Additional Properties |
false |
Used by
|
|
Source
|
"attrs": {
"type": "object",
"additionalProperties": false,
"required": ["panelType"],
"properties": {
"panelType": {
"enum": [
"note",
"success",
"custom",
"warning",
"tip",
"error",
"info"
]
},
"panelIcon": {"type": "string"},
"panelIconId": {"type": "string"},
"panelIconText": {"type": "string"},
"panelColor": {"type": "string"}
}
}
|
|
|
|
|
|
|
Schema panelType
Schema panelIcon
Schema panelIconId
Schema panelIconText
Schema panelColor
Schema content
Schema content/items
Definition schema anyOf/0
Definition schema anyOf/1
Definition schema anyOf/2
Definition schema anyOf/3
Definition schema anyOf/4
|