action netboxdemo_dcim_device_bays_read { label: "dcim_device-bays_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/device-bays/{id}/" encoding: json output: { type: "object" required: ["device", "name"] properties: { description: { type: "string" } device: { type: "object" properties: { display_name: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } id: { type: "integer" } installed_device: { type: "object" additionalProperties: true } name: { type: "string" } tags: { type: "array" items: { type: "string" } } } } }