action netbox_dcim_modules_read { label: "dcim_modules_read" description: "" provider: netbox method: GET path: "/dcim/modules/{id}/" encoding: json output: { type: "object" required: ["device", "module_bay", "module_type"] properties: { asset_tag: { type: "string" description: "A unique tag used to identify this device" } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } device: { type: "object" properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } module_bay: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } module: { type: "object" properties: { device: { type: "object" additionalProperties: true } display: { type: "string" } id: { type: "integer" } module_bay: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } module_type: { type: "object" required: ["model"] properties: { display: { type: "string" } id: { type: "integer" } 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" } url: { type: "string" format: "uri" } } } url: { type: "string" format: "uri" } } } name: { type: "string" } url: { type: "string" format: "uri" } } } module_type: { type: "object" additionalProperties: true } serial: { type: "string" } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Offline", "Active", "Planned", "Staged", "Failed", "Decommissioning"] } value: { type: "string" enum: ["offline", "active", "planned", "staged", "failed", "decommissioning"] } } } 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" } } } }