action netboxdemo_dcim_virtual_chassis_read { label: "dcim_virtual-chassis_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/virtual-chassis/{id}/" encoding: json output: { type: "object" required: ["master"] properties: { domain: { type: "string" } id: { type: "integer" } master: { type: "object" properties: { display_name: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } member_count: { type: "integer" } tags: { type: "array" items: { type: "string" } } } } }