{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AwsPrivateHostedZoneAttachmentConfig", "title": "AWS Private Hosted Zone Attachment Config", "type": "object", "properties": { "kind": { "enum": [ "aws-private-hosted-zone-attachment" ], "title": "AWS Private Hosted Zone Type" }, "hosted_zone_id": { "description": "AWS Hosted Zone to create attachment to.", "type": "string", "title": "Hosted Zone Id" } }, "additionalProperties": false, "required": [ "kind", "hosted_zone_id" ] }