action netbox_dcim_module_types_read { label: "dcim_module-types_read" description: "" provider: netbox method: GET path: "/dcim/module-types/{id}/" encoding: json output: { type: "object" required: ["manufacturer", "model"] properties: { comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } id: { type: "integer" } 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)" } 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" } 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"] } } } } } }