action netbox_ipam_services_read { label: "ipam_services_read" description: "" provider: netbox method: GET path: "/ipam/services/{id}/" encoding: json output: { type: "object" required: ["name", "ports"] properties: { comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } device: { type: "object" properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } display: { type: "string" } id: { type: "integer" } ipaddresses: { type: "array" items: { type: "object" required: ["address"] properties: { address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } display: { type: "string" } family: { type: "integer" } id: { type: "integer" } url: { type: "string" format: "uri" } } } } last_updated: { type: "string" format: "date-time" } name: { type: "string" } ports: { type: "array" items: { type: "integer" } } protocol: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["TCP", "UDP", "SCTP"] } value: { type: "string" enum: ["tcp", "udp", "sctp"] } } } 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" } } } } url: { type: "string" format: "uri" } virtual_machine: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } } } }