action netbox_dcim_locations_read { label: "dcim_locations_read" description: "" provider: netbox method: GET path: "/dcim/locations/{id}/" encoding: json output: { type: "object" required: ["name", "site", "slug"] properties: { _depth: { type: "integer" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } device_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } parent: { type: "object" required: ["name", "slug"] properties: { _depth: { type: "integer" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } rack_count: { type: "integer" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } rack_count: { type: "integer" } site: { 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" } } } slug: { type: "string" format: "slug" } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Planned", "Staging", "Active", "Decommissioning", "Retired"] } value: { type: "string" enum: ["planned", "staging", "active", "decommissioning", "retired"] } } } 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" } } } url: { type: "string" format: "uri" } } } }