action netboxdemo_dcim_device_bay_templates_read { label: "dcim_device-bay-templates_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/device-bay-templates/{id}/" encoding: json output: { type: "object" required: ["device_type", "name"] properties: { device_type: { type: "object" required: ["model", "slug"] properties: { device_count: { type: "integer" } display_name: { type: "string" } id: { type: "integer" } manufacturer: { type: "object" required: ["name", "slug"] properties: { devicetype_count: { type: "integer" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } model: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } id: { type: "integer" } name: { type: "string" } } } }