{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-access-policies-status-schema.json", "title": "AccessPoliciesStatus", "description": "The configured access rules for the domain's document and search endpoints, and the current status of those rules.", "type": "object", "properties": { "Options": { "allOf": [ { "$ref": "#/components/schemas/PolicyDocument" }, { "description": "The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information." } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/OptionStatus" }, { "description": "The status of the access policy for the Elasticsearch domain. See OptionStatus for the status information that's included. " } ] } }, "required": [ "Options", "Status" ] }