TenantAtlas/specs/047-inventory-foundations-nodes/contracts/inventory-selection.schema.json
2026-01-10 20:59:16 +01:00

30 lines
863 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://tenantpilot.local/contracts/inventory-selection.schema.json",
"title": "Inventory Selection Payload",
"type": "object",
"additionalProperties": true,
"properties": {
"policy_types": {
"type": "array",
"items": { "type": "string" },
"default": []
},
"categories": {
"type": "array",
"items": { "type": "string" },
"default": []
},
"include_foundations": {
"type": "boolean",
"default": true,
"description": "When true, the sync run includes all configured foundation types in addition to selected policy types."
},
"include_dependencies": {
"type": "boolean",
"default": true
}
},
"required": ["policy_types", "categories", "include_foundations", "include_dependencies"]
}