action netbox_dcim_cable_terminations_read { label: "dcim_cable-terminations_read" description: "" provider: netbox method: GET path: "/dcim/cable-terminations/{id}/" encoding: json output: { type: "object" required: ["cable", "cable_end", "termination_id", "termination_type"] properties: { cable: { type: "integer" } cable_end: { type: "string" enum: ["A", "B"] } display: { type: "string" } id: { type: "integer" } termination: { type: "object" } termination_id: { type: "integer" } termination_type: { type: "string" } url: { type: "string" format: "uri" } } } }