action netbox_dcim_virtual_device_contexts_read { label: "dcim_virtual-device-contexts_read" description: "" provider: netbox method: GET path: "/dcim/virtual-device-contexts/{id}/" encoding: json output: { type: "object" required: ["device", "name", "status"] properties: { 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" } identifier: { type: "integer" description: "Numeric identifier unique to the parent device" } interface_count: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } primary_ip: { type: "object" required: ["address"] properties: { address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } display: { type: "string" } family: { type: "integer" } id: { type: "integer" } url: { type: "string" format: "uri" } } } primary_ip4: { type: "object" additionalProperties: true } primary_ip6: { type: "object" additionalProperties: true } status: { type: "string" enum: ["active", "planned", "offline"] } 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" } } } } tenant: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } url: { type: "string" format: "uri" } } } }