action netboxdemo_ipam_prefixes_available_prefixes_read { label: "A convenience method for returning available child prefixes within a parent." description: "The advisory lock decorator uses a PostgreSQL advisory lock to prevent this API from being\ninvoked in parallel, which results in a race condition where multiple insertions can occur." provider: netboxdemo method: GET path: "/ipam/prefixes/{id}/available-prefixes/" encoding: json output: { type: "array" items: { type: "object" properties: { family: { type: "integer" } prefix: { type: "string" } vrf: { type: "object" required: ["name"] properties: { 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" } } } } } } }