blob: f9fd1b07adab76b65eed2148109274e1cf474c72 [file] [log] [blame]
{
"description": "A target image",
"type": "object",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"properties": {
"type": {
"description": "Marker for this type of element",
"type": "string",
"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": [
"type",
"file"
]
}
]
}