blob: a6b98e89433be7b0dd646b8569091cce86e43341 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://fuchsia.com/schemas/sdk/image.json",
"description": "A target image",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"allOf": [
{
"$ref": "common.json#/definitions/type"
},
{
"enum": [
"image"
]
}
]
},
"file": {
"description": "The image, per architecture",
"type": "object",
"properties": {
"x64": {
"description": "File for the x64 architecture",
"$ref": "common.json#/definitions/file"
},
"arm64": {
"description": "File for the arm64 architecture",
"$ref": "common.json#/definitions/file"
}
},
"additionalProperties": false,
"minProperties": 1,
"maxProperties": 2
}
},
"required": [
"file",
"name",
"type"
],
"additionalProperties": false
}
]
}