action netbox_dcim_device_roles_read { label: "dcim_device-roles_read" description: "" provider: netbox method: GET path: "/dcim/device-roles/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } device_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } slug: { type: "string" format: "slug" } 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" } } } } url: { type: "string" format: "uri" } virtualmachine_count: { type: "integer" } vm_role: { type: "boolean" description: "Virtual machines may be assigned to this role" } } } }