{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-structure/bovine-ec2-instance-detail-structure.json", "name": "Ec2InstanceDetail", "description": "Detailed EC2 instance information.", "type": "object", "properties": { "Account": { "type": "object", "properties": { "accountNum": { "type": "string", "example": "123456789012" } } }, "Instance": { "type": "object", "properties": { "InstanceId": { "type": "string", "example": "i-0a1b2c3d4e5f60718" }, "PublicIpAddress": { "type": "string", "example": "203.0.113.25" }, "SubnetId": { "type": "string", "example": "subnet-0a1b2c3d4e5f60718" }, "LoadBalancers": { "type": "array", "description": "ELBs associated with this instance.", "items": { "type": "string", "example": "prod-web-elb" } } } } } }