TenantAtlas/specs/006-sot-foundations-assignments/contracts/foundation-snapshot.schema.json
2025-12-25 14:52:28 +01:00

19 lines
554 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "foundation-snapshot.schema.json",
"title": "FoundationSnapshot",
"type": "object",
"required": ["type", "sourceId", "payload"],
"properties": {
"type": {
"type": "string",
"enum": ["assignmentFilter", "roleScopeTag", "notificationMessageTemplate"]
},
"sourceId": { "type": "string" },
"displayName": { "type": "string" },
"payload": { "type": "object" },
"metadata": { "type": ["object", "null"] }
},
"additionalProperties": false
}