blob: e6a3e3a251955c054795bcaaf9b25404c3eb38f1 [file] [log] [blame]
{
"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
}
]
}