26 lines
496 B
JSON
26 lines
496 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "PlotModule",
|
|
"type": "object",
|
|
"required": ["header", "name", "opening_event", "events"],
|
|
"properties": {
|
|
"header": {
|
|
"$ref": "resource-header.schema.json"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"opening_event": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"events": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|
|
}
|