Adds Inventory Sync toggle include_foundations (default true) + persistence tests Adds Coverage “Dependencies” column (✅/—) derived deterministically from graph_contracts (no Graph calls) Spec/tasks/checklists updated + tasks ticked off Co-authored-by: Ahmed Darrazi <ahmeddarrazi@adsmac.local> Reviewed-on: #51
30 lines
863 B
JSON
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"]
|
|
}
|