Chick-fil-A · JSON Structure

Bovine Security Group Detail Structure

Detailed security group including inbound and outbound rules and associated instances.

Type: object Properties: 4
Fast FoodRestaurantsFood & BeverageLoyaltyMobile OrderingCatering

SecurityGroupDetail is a JSON Structure definition published by Chick-fil-A, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GroupId InboundRules OutboundRules Instances

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-structure/bovine-security-group-detail-structure.json",
  "name": "SecurityGroupDetail",
  "description": "Detailed security group including inbound and outbound rules and associated instances.",
  "type": "object",
  "properties": {
    "GroupId": {
      "type": "string",
      "example": "sg-0a1b2c3d4e5f60718"
    },
    "InboundRules": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A single inbound or outbound security group rule.",
        "properties": {
          "FromPort": {
            "type": "int32",
            "example": 443
          },
          "ToPort": {
            "type": "int32",
            "example": 443
          },
          "Protocol": {
            "type": "string",
            "example": "tcp"
          },
          "Cidr": {
            "type": "string",
            "example": "10.0.0.0/16"
          }
        }
      }
    },
    "OutboundRules": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A single inbound or outbound security group rule.",
        "properties": {
          "FromPort": {
            "type": "int32",
            "example": 443
          },
          "ToPort": {
            "type": "int32",
            "example": 443
          },
          "Protocol": {
            "type": "string",
            "example": "tcp"
          },
          "Cidr": {
            "type": "string",
            "example": "10.0.0.0/16"
          }
        }
      }
    },
    "Instances": {
      "type": "array",
      "description": "Instances associated with this security group.",
      "items": {
        "type": "object",
        "properties": {
          "InstanceId": {
            "type": "string",
            "example": "i-0a1b2c3d4e5f60718"
          },
          "Name": {
            "type": "string",
            "example": "prod-web-1"
          }
        }
      }
    }
  }
}