Jagpal Singh Gill | e6fc3b7 | 2024-11-20 18:09:28 -0800 | [diff] [blame] | 1 | { |
| 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | "$defs": { |
| 4 | "FirmwareInfoDef": { |
| 5 | "description": "This indicates the properties which apply to all firmwares", |
| 6 | "type": "object", |
| 7 | "properties": { |
| 8 | "VendorIANA": { |
| 9 | "description": "The IANA Enterprise Id of the hardware vendor", |
| 10 | "type": "number" |
| 11 | }, |
| 12 | "CompatibleHardware": { |
| 13 | "description": "The compatible hardware with name format com.<vendor>.Hardware.<XXX> specified by vendor in phosphor-dbus-interfaces", |
| 14 | "type": "string" |
| 15 | } |
| 16 | }, |
| 17 | "required": ["VendorIANA", "CompatibleName"] |
| 18 | } |
| 19 | } |
| 20 | } |