action netboxdemo_dcim_cables_create { label: "dcim_cables_create" description: "" provider: netboxdemo method: POST path: "/dcim/cables/" encoding: json output: { type: "object" required: ["termination_a_id", "termination_a_type", "termination_b_id", "termination_b_type"] properties: { color: { type: "string" } id: { type: "integer" } label: { type: "string" } length: { type: "integer" } length_unit: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Meters", "Centimeters", "Feet", "Inches"] } value: { type: "string" enum: ["m", "cm", "ft", "in"] } } } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Connected", "Planned", "Decommissioning"] } value: { type: "string" enum: ["connected", "planned", "decommissioning"] } } } termination_a: { type: "object" } termination_a_id: { type: "integer" } termination_a_type: { type: "string" } termination_b: { type: "object" } termination_b_id: { type: "integer" } termination_b_type: { type: "string" } type: { type: "string" enum: ["cat3", "cat5", "cat5e", "cat6", "cat6a", "cat7", "dac-active", "dac-passive", "mrj21-trunk", "coaxial", "mmf", "mmf-om1", "mmf-om2", "mmf-om3", "mmf-om4", "smf", "smf-os1", "smf-os2", "aoc", "power"] } } } }