{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch-service/refs/heads/main/json-schema/openapi-create-domain-request-schema.json", "title": "CreateDomainRequest", "description": "CreateDomainRequest schema from Amazon OpenSearch Service", "type": "object", "properties": { "DomainName": { "type": "string", "description": "Name of the OpenSearch domain to create" }, "EngineVersion": { "type": "string", "description": "Version of OpenSearch or Elasticsearch" }, "ClusterConfig": { "type": "object", "description": "Container for the cluster configuration" }, "EBSOptions": { "type": "object", "description": "Container for EBS-based storage options" }, "AccessPolicies": { "type": "string", "description": "IAM access policy as a JSON-formatted string" } }, "required": [ "DomainName" ] }