19 lines
373 B
JSON
19 lines
373 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
|
"type": "object",
|
||
|
|
"javaType": "com.sequencelogic.sleds.models.classification.LibraryPage",
|
||
|
|
"extends" : {"$ref": "PageBase.json#"},
|
||
|
|
"allOf": [
|
||
|
|
{ "$ref": "PageBase.json#" }
|
||
|
|
],
|
||
|
|
"properties": {
|
||
|
|
"id": {
|
||
|
|
"type": "string"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"additionalProperties": true,
|
||
|
|
"required": [
|
||
|
|
"id"
|
||
|
|
]
|
||
|
|
}
|