{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-structure/bovine-security-group-list-structure.json", "name": "SecurityGroupList", "description": "A list of security groups for an account.", "type": "object", "properties": { "SecurityGroups": { "type": "array", "items": { "type": "object", "description": "An EC2 security group record.", "properties": { "Region": { "type": "string", "example": "us-east-1" }, "GroupId": { "type": "string", "example": "sg-0a1b2c3d4e5f60718" }, "GroupName": { "type": "string", "example": "prod-web-sg" } } } } } }