action netbox_ipam_vrfs_read { label: "ipam_vrfs_read" description: "" provider: netbox method: GET path: "/ipam/vrfs/{id}/" encoding: json output: { type: "object" required: ["name"] properties: { comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } enforce_unique: { type: "boolean" description: "Prevent duplicate prefixes/IP addresses within this VRF" } export_targets: { type: "array" items: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" description: "Route target value (formatted in accordance with RFC 4360)" } url: { type: "string" format: "uri" } } } } id: { type: "integer" } import_targets: { type: "array" items: { type: "object" additionalProperties: true } } 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: "object" required: ["name", "slug"] properties: { color: { type: "string" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } } tenant: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } url: { type: "string" format: "uri" } } } }