action netbox_dcim_cables_read { label: "dcim_cables_read" description: "" provider: netbox method: GET path: "/dcim/cables/{id}/" encoding: json output: { type: "object" properties: { a_terminations: { type: "array" items: { type: "object" required: ["object_type", "object_id"] properties: { object: { type: "object" } object_id: { type: "integer" } object_type: { type: "string" } } } } b_terminations: { type: "array" items: { type: "object" additionalProperties: true } } color: { type: "string" } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } id: { type: "integer" } label: { type: "string" } last_updated: { type: "string" format: "date-time" } length: { type: "number" format: "decimal" } length_unit: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Kilometers", "Meters", "Centimeters", "Miles", "Feet", "Inches"] } value: { type: "string" enum: ["km", "m", "cm", "mi", "ft", "in"] } } } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Connected", "Planned", "Decommissioning"] } value: { type: "string" enum: ["connected", "planned", "decommissioning"] } } } tags: { type: "array" items: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } } tenant: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } type: { type: "string" enum: ["cat3", "cat5", "cat5e", "cat6", "cat6a", "cat7", "cat7a", "cat8", "dac-active", "dac-passive", "mrj21-trunk", "coaxial", "mmf", "mmf-om1", "mmf-om2", "mmf-om3", "mmf-om4", "mmf-om5", "smf", "smf-os1", "smf-os2", "aoc", "power"] } url: { type: "string" format: "uri" } } } }