action netboxdemo_dcim_device_roles_read { label: "dcim_device-roles_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/device-roles/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } description: { type: "string" } device_count: { type: "integer" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } virtualmachine_count: { type: "integer" } vm_role: { type: "boolean" description: "Virtual machines may be assigned to this role" } } } }