Policy schema from Amazon Organizations
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-organizations/refs/heads/main/json-schema/openapi-policy-schema.json", "title": "Policy", "description": "Policy schema from Amazon Organizations", "type": "object", "properties": { "PolicySummary": { "type": "object", "properties": { "Id": { "type": "string" }, "Arn": { "type": "string" }, "Name": { "type": "string" }, "Type": { "type": "string", "enum": [ "SERVICE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY" ] } } }, "Content": { "type": "string" } } }