action netbox_ipam_ip_ranges_read { label: "ipam_ip-ranges_read" description: "" provider: netbox method: GET path: "/ipam/ip-ranges/{id}/" encoding: json output: { type: "object" required: ["end_address", "start_address"] properties: { children: { type: "integer" } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } end_address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } 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" } role: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } prefix_count: { type: "integer" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } vlan_count: { type: "integer" } } } size: { type: "integer" } start_address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Active", "Reserved", "Deprecated"] } value: { type: "string" enum: ["active", "reserved", "deprecated"] } } } 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" } vrf: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } prefix_count: { type: "integer" } rd: { type: "string" description: "Unique route distinguisher (as defined in RFC 4364)" } url: { type: "string" format: "uri" } } } } } }