action netboxdemo_circuits_circuit_terminations_read { label: "circuits_circuit-terminations_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/circuits/circuit-terminations/{id}/" encoding: json output: { type: "object" required: ["circuit", "port_speed", "site", "term_side"] properties: { cable: { type: "object" properties: { id: { type: "integer" } label: { type: "string" } url: { type: "string" format: "uri" } } } circuit: { type: "object" required: ["cid"] properties: { cid: { type: "string" } id: { type: "integer" } url: { type: "string" format: "uri" } } } connected_endpoint: { type: "object" description: "\nReturn the appropriate serializer for the type of connected object.\n" } connected_endpoint_type: { type: "string" } connection_status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Not Connected", "Connected"] } value: { type: "boolean" enum: [false, true] } } } description: { type: "string" } id: { type: "integer" } port_speed: { type: "integer" } pp_info: { type: "string" } site: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } term_side: { type: "string" enum: ["A", "Z"] } upstream_speed: { type: "integer" description: "Upstream speed, if different from port speed" } xconnect_id: { type: "string" } } } }