Chick-fil-A · Schema

PublicIp

A public/Elastic IP address association.

Fast FoodRestaurantsFood & BeverageLoyaltyMobile OrderingCatering

Properties

Name Type Description
PublicIP string The public IP address.
InstanceId string The associated EC2 instance ID.
PrivateIP string The associated private IP address.
NetworkInterface string The associated network interface ID.
View JSON Schema on GitHub

JSON Schema

bovine-public-ip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PublicIp",
  "description": "A public/Elastic IP address association.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-schema/bovine-public-ip-schema.json",
  "type": "object",
  "properties": {
    "PublicIP": {
      "type": "string",
      "description": "The public IP address.",
      "example": "203.0.113.25"
    },
    "InstanceId": {
      "type": "string",
      "description": "The associated EC2 instance ID.",
      "example": "i-0a1b2c3d4e5f60718"
    },
    "PrivateIP": {
      "type": "string",
      "description": "The associated private IP address.",
      "example": "10.0.4.12"
    },
    "NetworkInterface": {
      "type": "string",
      "description": "The associated network interface ID.",
      "example": "eni-0a1b2c3d4e5f60718"
    }
  }
}