blob: b288e59baff27cece469df36bee246a1d87c73a3 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"additionalProperties": false,
"properties": {
"data": {
"description": "The list of data files pertaining to the set",
"items": {
"$ref": "common.json#/definitions/file"
},
"minItems": 1,
"type": "array"
},
"name": {
"description": "Name of the data set",
"type": "string"
},
"type": {
"allOf": [
{
"$ref": "common.json#/definitions/kind"
},
{
"enum": [
"component_manifest",
"config",
"license"
]
}
]
}
},
"required": [
"data",
"name",
"type"
]
}
],
"description": "A set of data files",
"id": "http://fuchsia.com/schemas/sdk/documentation.json",
"type": "object"
}