action netboxdemo_ipam_vrfs_read { label: "ipam_vrfs_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/ipam/vrfs/{id}/" encoding: json output: { type: "object" required: ["name"] properties: { created: { type: "string" format: "date" } custom_fields: { type: "object" } description: { type: "string" } display_name: { type: "string" } enforce_unique: { type: "boolean" description: "Prevent duplicate prefixes/IP addresses within this VRF" } id: { type: "integer" } ipaddress_count: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } prefix_count: { type: "integer" } rd: { type: "string" description: "Unique route distinguisher (as defined in RFC 4364)" } 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" } } } } } }