action netboxdemo_ipam_services_read { label: "ipam_services_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/ipam/services/{id}/" encoding: json output: { type: "object" required: ["name", "port"] properties: { created: { type: "string" format: "date" } custom_fields: { type: "object" } description: { type: "string" } device: { type: "object" properties: { display_name: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } id: { type: "integer" } ipaddresses: { type: "array" items: { type: "object" required: ["address"] properties: { address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } family: { type: "string" } id: { type: "integer" } url: { type: "string" format: "uri" } } } } last_updated: { type: "string" format: "date-time" } name: { type: "string" } port: { type: "integer" } protocol: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["TCP", "UDP"] } value: { type: "string" enum: ["tcp", "udp"] } } } tags: { type: "array" items: { type: "string" } } virtual_machine: { type: "object" required: ["name"] properties: { id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } } } }