A public/Elastic IP address association.
{ "$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" } } }