action netbox_ipam_vlan_groups_available_vlans_list { label: "ipam_vlan-groups_available-vlans_list" description: "" provider: netbox method: GET path: "/ipam/vlan-groups/{id}/available-vlans/" encoding: json output: { type: "array" items: { type: "object" properties: { group: { 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" } vlan_count: { type: "integer" } } } vid: { type: "integer" } } } } }