action netboxdemo_dcim_rack_groups_read { label: "dcim_rack-groups_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/rack-groups/{id}/" encoding: json output: { type: "object" required: ["name", "site", "slug"] properties: { description: { type: "string" } id: { type: "integer" } name: { type: "string" } parent: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } rack_count: { type: "integer" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } rack_count: { type: "integer" } 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" } } } }