action netboxdemo_dcim_inventory_items_read { label: "dcim_inventory-items_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/inventory-items/{id}/" encoding: json output: { type: "object" required: ["device", "name"] properties: { asset_tag: { type: "string" description: "A unique tag used to identify this item" } description: { type: "string" } device: { type: "object" properties: { display_name: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } discovered: { type: "boolean" description: "This item was automatically discovered" } id: { type: "integer" } 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" } } } name: { type: "string" } parent: { type: "integer" } part_id: { type: "string" description: "Manufacturer-assigned part identifier" } serial: { type: "string" } tags: { type: "array" items: { type: "string" } } } } }