action netboxdemo_ipam_vlan_groups_read { label: "ipam_vlan-groups_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/ipam/vlan-groups/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { description: { type: "string" } id: { type: "integer" } name: { type: "string" } site: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } slug: { type: "string" format: "slug" } vlan_count: { type: "integer" } } } }