action netbox_dcim_device_types_read { label: "dcim_device-types_read" description: "" provider: netbox method: GET path: "/dcim/device-types/{id}/" encoding: json output: { type: "object" required: ["manufacturer", "model", "slug"] properties: { airflow: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Front to rear", "Rear to front", "Left to right", "Right to left", "Side to rear", "Passive", "Mixed"] } value: { type: "string" enum: ["front-to-rear", "rear-to-front", "left-to-right", "right-to-left", "side-to-rear", "passive", "mixed"] } } } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } device_count: { type: "integer" } display: { type: "string" } front_image: { type: "string" format: "uri" } id: { type: "integer" } is_full_depth: { type: "boolean" description: "Device consumes both front and rear rack faces" } last_updated: { type: "string" format: "date-time" } manufacturer: { type: "object" required: ["name", "slug"] properties: { devicetype_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } model: { type: "string" } part_number: { type: "string" description: "Discrete part number (optional)" } rear_image: { type: "string" format: "uri" } slug: { type: "string" format: "slug" } subdevice_role: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Parent", "Child"] } value: { type: "string" enum: ["parent", "child"] } } } 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" } } } } u_height: { type: "number" format: "decimal" } url: { type: "string" format: "uri" } weight: { type: "number" format: "decimal" } weight_unit: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Kilograms", "Grams", "Pounds", "Ounces"] } value: { type: "string" enum: ["kg", "g", "lb", "oz"] } } } } } }