{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "department": { "type": "string", "enum": [ "marketing", "engineering" ] }, "geography": { "type": "string" }, "team": { "type": "string" }, "managed_geographies": { "type": "string" }, "orgId": { "type": "string" }, "jobRoles": { "type": "array", "items": { "type": "string" } }, "tags": { "type": "object", "properties": { "brands": { "type": "array", "items": { "type": "string" } }, "classes": { "type": "array", "items": { "type": "string" } }, "regions": { "type": "array", "items": { "type": "string" } } } } }, "required": [ "department", "geography", "team" ] }