action netbox_dcim_power_feeds_trace { label: "dcim_power-feeds_trace" description: "Trace a complete cable path and return each segment as a three-tuple of (termination, cable, termination)." provider: netbox method: GET path: "/dcim/power-feeds/{id}/trace/" encoding: json output: { type: "object" required: ["name", "power_panel"] properties: { _occupied: { type: "boolean" } amperage: { type: "integer" } cable: { type: "object" properties: { display: { type: "string" } id: { type: "integer" } label: { type: "string" } url: { type: "string" format: "uri" } } } cable_end: { type: "string" } comments: { type: "string" } connected_endpoints: { type: "array" description: "\nReturn the appropriate serializer for the type of connected object.\n" items: { type: "string" } } connected_endpoints_reachable: { type: "boolean" } connected_endpoints_type: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } link_peers: { type: "array" description: "\nReturn the appropriate serializer for the link termination model.\n" items: { type: "string" } } link_peers_type: { type: "string" } mark_connected: { type: "boolean" description: "Treat as if a cable is connected" } max_utilization: { type: "integer" description: "Maximum permissible draw (percentage)" } name: { type: "string" } phase: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Single phase", "Three-phase"] } value: { type: "string" enum: ["single-phase", "three-phase"] } } } power_panel: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } powerfeed_count: { type: "integer" } url: { type: "string" format: "uri" } } } rack: { type: "object" required: ["name"] properties: { device_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Offline", "Active", "Planned", "Failed"] } value: { type: "string" enum: ["offline", "active", "planned", "failed"] } } } supply: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["AC", "DC"] } value: { type: "string" enum: ["ac", "dc"] } } } 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" } } } } type: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Primary", "Redundant"] } value: { type: "string" enum: ["primary", "redundant"] } } } url: { type: "string" format: "uri" } voltage: { type: "integer" } } } }