action netboxdemo_circuits_providers_read { label: "circuits_providers_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/circuits/providers/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { account: { type: "string" } admin_contact: { type: "string" } asn: { type: "integer" description: "32-bit autonomous system number" } circuit_count: { type: "integer" } comments: { type: "string" } created: { type: "string" format: "date" } custom_fields: { type: "object" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } noc_contact: { type: "string" } portal_url: { type: "string" format: "uri" } slug: { type: "string" format: "slug" } tags: { type: "array" items: { type: "string" } } } } }