action netbox_extras_tags_read { label: "extras_tags_read" description: "" provider: netbox method: GET path: "/extras/tags/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } created: { type: "string" format: "date-time" } description: { type: "string" } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } slug: { type: "string" format: "slug" } tagged_items: { type: "integer" } url: { type: "string" format: "uri" } } } }