action netbox_dcim_rack_reservations_read { label: "dcim_rack-reservations_read" description: "" provider: netbox method: GET path: "/dcim/rack-reservations/{id}/" encoding: json output: { type: "object" required: ["description", "rack", "units", "user"] properties: { comments: { 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" } rack: { type: "object" required: ["name"] properties: { device_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } 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" } } } units: { type: "array" items: { type: "integer" } } url: { type: "string" format: "uri" } user: { type: "object" required: ["username"] properties: { display: { type: "string" } id: { type: "integer" } url: { type: "string" format: "uri" } username: { type: "string" description: "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only." } } } } } }