ChangeResourceRecordSetsRequest schema from openapi
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-route-53/refs/heads/main/json-schema/amazon-route-53-openapi-change-resource-record-sets-request-schema.json", "title": "ChangeResourceRecordSetsRequest", "description": "ChangeResourceRecordSetsRequest schema from openapi", "type": "object", "properties": { "ChangeBatch": { "type": "object", "properties": { "Comment": { "type": "string", "description": "A comment about the changes." }, "Changes": { "type": "array", "items": { "type": "object", "properties": { "Action": { "type": "string", "enum": [ "CREATE", "DELETE", "UPSERT" ] }, "ResourceRecordSet": { "$ref": "#/components/schemas/ResourceRecordSet" } }, "required": [ "Action", "ResourceRecordSet" ] } } }, "required": [ "Changes" ] } }, "required": [ "ChangeBatch" ] }