action netboxdemo_dcim_regions_read { label: "dcim_regions_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/regions/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { description: { type: "string" } id: { type: "integer" } name: { type: "string" } parent: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } site_count: { type: "integer" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } site_count: { type: "integer" } slug: { type: "string" format: "slug" } } } }