{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "host.schema.json",
"type": "array",
"items": {
"type": "object",
"required": ["id", "name", "type", "status", "environment", "docs", "last_reviewed"],
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"type": { "type": "string" },
"status": { "type": "string" },
"environment": { "type": "string" },
"provider": { "type": "string" },
"location": { "type": "string" },
"roles": { "type": "array", "items": { "type": "string" } },
"hardware_node": { "type": "string" },
"docs": { "type": "string" },
"last_reviewed": { "type": "string" },
"source_of_truth": { "type": "string" }
},
"additionalProperties": true
}
}