blob: 2bf62f2ccd16ea3fdf3be1eaf756ba85032bc909 [file] [edit]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"requirements": {
"properties": {
"hardware": {
"properties": {
"cpu": {
"additionalProperties": false,
"properties": {
"arch": {
"type": "string"
},
"count": {
"type": "integer"
}
},
"required": [
"arch",
"count"
],
"type": "object"
}
},
"required": [
"cpu"
],
"type": "object"
}
},
"required": [
"hardware"
],
"type": "object"
}
},
"description": "Hardware requirements for running a product image.",
"id": "http://fuchsia.com/schemas/sdk/hardware.json",
"oneOf": [
{
"$ref": "#/definitions/requirements"
}
]
}