{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RouteTable", "title": "RouteTable", "type": "object", "description": "A route table for a VCN.", "properties": { "id": { "type": "string", "example": "ocid1.resource.oc1.iad.abcdefg123456" }, "compartmentId": { "type": "string", "example": "ocid1.resource.oc1.iad.abcdefg123456" }, "vcnId": { "type": "string", "example": "ocid1.resource.oc1.iad.abcdefg123456" }, "displayName": { "type": "string", "example": "Default Route Table" }, "lifecycleState": { "type": "string", "enum": [ "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" ], "example": "PROVISIONING" }, "routeRules": { "type": "array", "items": { "type": "object", "properties": { "destination": { "type": "string", "example": "0.0.0.0/0" }, "destinationType": { "type": "string", "enum": [ "CIDR_BLOCK", "SERVICE_CIDR_BLOCK" ] }, "networkEntityId": { "type": "string" } } }, "example": [ { "destination": "0.0.0.0/0", "destinationType": "CIDR_BLOCK", "networkEntityId": "ocid1.resource.oc1.iad.abcdefg123456" } ] }, "timeCreated": { "type": "string", "format": "date-time", "example": "2026-04-18T10:30:00Z" } } }