action netboxdemo_dcim_rack_reservations_read { label: "dcim_rack-reservations_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/rack-reservations/{id}/" encoding: json output: { type: "object" required: ["description", "rack", "units", "user"] properties: { created: { type: "string" format: "date" } description: { type: "string" } id: { type: "integer" } rack: { type: "object" required: ["name"] properties: { device_count: { type: "integer" } display_name: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } tenant: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } units: { type: "array" items: { type: "integer" } } user: { type: "object" required: ["username"] properties: { id: { type: "integer" } username: { type: "string" description: "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only." } } } } } }