blob: 9211b2f1f60483e5535c108da92a2bb9c6288a2b [file] [log] [blame]
{
"description": "A set of documents",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"allOf": [
{
"$ref": "common.json#/definitions/type"
},
{
"enum": [
"documentation"
]
}
]
},
"docs": {
"description": "The list of documents pertaining to the set",
"type": "array",
"items": {
"$ref": "common.json#/definitions/file"
}
}
},
"required": [
"docs",
"name",
"type"
],
"additionalProperties": false
}
]
}