action redhat_list_tags { label: "List Tags" description: "Returns an array of Tag objects" provider: redhat method: GET path: "/tags" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { tag: { type: "string" } } additionalProperties: false } } links: { type: "object" properties: { first: { type: "string" } last: { type: "string" } next: { type: "string" } prev: { type: "string" } } } meta: { type: "object" properties: { count: { type: "integer" } limit: { type: "integer" } offset: { type: "integer" } } } } } }