blob: 9b4c4d958990ff4d768f70363f68ab8396bd46c7 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://fuchsia.com/schemas/sdk/documentation.json",
"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
}
]
}