action netboxdemo_dcim_sites_read { label: "dcim_sites_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/sites/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { asn: { type: "integer" description: "32-bit autonomous system number" } circuit_count: { type: "integer" } comments: { type: "string" } contact_email: { type: "string" format: "email" } contact_name: { type: "string" } contact_phone: { type: "string" } created: { type: "string" format: "date" } custom_fields: { type: "object" } description: { type: "string" } device_count: { type: "integer" } facility: { type: "string" description: "Local facility ID or description" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } latitude: { type: "string" format: "decimal" description: "GPS coordinate (latitude)" } longitude: { type: "string" format: "decimal" description: "GPS coordinate (longitude)" } name: { type: "string" } physical_address: { type: "string" } prefix_count: { type: "integer" } rack_count: { type: "integer" } region: { 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" } } } shipping_address: { type: "string" } slug: { type: "string" format: "slug" } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Active", "Planned", "Retired"] } value: { type: "string" enum: ["active", "planned", "retired"] } } } tags: { type: "array" items: { type: "string" } } tenant: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } time_zone: { type: "string" } virtualmachine_count: { type: "integer" } vlan_count: { type: "integer" } } } }