action netbox_ipam_aggregates_read { label: "ipam_aggregates_read" description: "" provider: netbox method: GET path: "/ipam/aggregates/{id}/" encoding: json output: { type: "object" required: ["prefix", "rir"] properties: { comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } date_added: { type: "string" format: "date" } description: { type: "string" } display: { type: "string" } family: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["IPv4", "IPv6"] } value: { type: "integer" enum: [4, 6] } } } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } prefix: { type: "string" } rir: { type: "object" required: ["name", "slug"] properties: { aggregate_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } 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" } } } }