action netbox_ipam_service_templates_read { label: "ipam_service-templates_read" description: "" provider: netbox method: GET path: "/ipam/service-templates/{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" } display: { type: "string" } id: { type: "integer" } 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" } } } }