Chick-fil-A · Schema

SecurityGroupRule

A single inbound or outbound security group rule.

Fast FoodRestaurantsFood & BeverageLoyaltyMobile OrderingCatering

Properties

Name Type Description
FromPort integer
ToPort integer
Protocol string
Cidr string
View JSON Schema on GitHub

JSON Schema

bovine-security-group-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SecurityGroupRule",
  "description": "A single inbound or outbound security group rule.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-schema/bovine-security-group-rule-schema.json",
  "type": "object",
  "properties": {
    "FromPort": {
      "type": "integer",
      "example": 443
    },
    "ToPort": {
      "type": "integer",
      "example": 443
    },
    "Protocol": {
      "type": "string",
      "example": "tcp"
    },
    "Cidr": {
      "type": "string",
      "example": "10.0.0.0/16"
    }
  }
}