{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "RdsDatabase", "description": "An RDS database instance record.", "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-schema/bovine-rds-database-schema.json", "type": "object", "properties": { "Region": { "type": "string", "example": "us-east-1" }, "DBName": { "type": "string", "example": "orders" }, "Endpoint": { "type": "object", "description": "The RDS endpoint descriptor.", "properties": { "Address": { "type": "string", "example": "orders.abc123.us-east-1.rds.amazonaws.com" }, "Port": { "type": "integer", "example": 5432 } } }, "CreateDate": { "type": "string", "description": "The instance creation timestamp.", "example": "2025-01-15T10:00:00Z" }, "AccountAlias": { "type": "string", "example": "prod-platform" } } }