Chick-fil-A · Schema
RdsDatabase
An RDS database instance record.
Fast FoodRestaurantsFood & BeverageLoyaltyMobile OrderingCatering
Properties
| Name | Type | Description |
|---|---|---|
| Region | string | |
| DBName | string | |
| Endpoint | object | The RDS endpoint descriptor. |
| CreateDate | string | The instance creation timestamp. |
| AccountAlias | string |
JSON Schema
{
"$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"
}
}
}