{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eks/refs/heads/main/json-schema/eks-openapi-vpc-config-response-schema.json", "title": "VpcConfigResponse", "description": "VpcConfigResponse schema from Amazon EKS API", "type": "object", "properties": { "subnetIds": { "type": "array", "items": { "type": "string" } }, "securityGroupIds": { "type": "array", "items": { "type": "string" } }, "clusterSecurityGroupId": { "type": "string" }, "vpcId": { "type": "string" }, "endpointPublicAccess": { "type": "boolean" }, "endpointPrivateAccess": { "type": "boolean" }, "publicAccessCidrs": { "type": "array", "items": { "type": "string" } } } }