action netboxdemo_dcim_device_types_create { label: "dcim_device-types_create" description: "" provider: netboxdemo method: POST path: "/dcim/device-types/" encoding: json output: { type: "object" required: ["manufacturer", "model", "slug"] properties: { comments: { type: "string" } created: { type: "string" format: "date" } custom_fields: { type: "object" } device_count: { type: "integer" } display_name: { 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" } 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: "string" } } u_height: { type: "integer" } } } }