blob: 3362acf37a6d74ad62c3f26f0df5ac474fe2e0be [file] [log] [blame]
{
"description": "A set of documents",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"description": "Marker for this type of element",
"type": "string",
"enum": [
"documentation"
]
},
"docs": {
"description": "The list of documents pertaining to the set",
"type": "array",
"items": {
"$ref": "common.json#/definitions/file"
}
}
},
"required": [
"type",
"docs"
]
}
]
}