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