action netboxdemo_tenancy_tenants_read { label: "tenancy_tenants_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/tenancy/tenants/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { circuit_count: { type: "integer" } cluster_count: { type: "integer" } comments: { type: "string" } created: { type: "string" format: "date" } custom_fields: { type: "object" } description: { type: "string" } device_count: { type: "integer" } group: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } tenant_count: { type: "integer" } url: { type: "string" format: "uri" } } } id: { type: "integer" } ipaddress_count: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } prefix_count: { type: "integer" } rack_count: { type: "integer" } site_count: { type: "integer" } slug: { type: "string" format: "slug" } tags: { type: "array" items: { type: "string" } } virtualmachine_count: { type: "integer" } vlan_count: { type: "integer" } vrf_count: { type: "integer" } } } }