You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.0 KiB

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