action redhat_list_sources { label: "List Sources" description: "Returns an array of Source objects" provider: redhat method: GET path: "/sources" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { archived_at: { type: "string" format: "date-time" } availability_message: { type: "string" } availability_status: { type: "string" } cloud_connector_id: { type: "string" } created_at: { type: "string" format: "date-time" } enabled: { type: "boolean" } id: { type: "string" description: "ID of the resource" } info: { type: "object" } last_available_at: { type: "string" format: "date-time" } last_checked_at: { type: "string" format: "date-time" } last_refresh_message: { type: "string" } last_successful_refresh_at: { type: "string" format: "date-time" } name: { type: "string" } previous_sha: { type: "string" } previous_size: { type: "integer" } refresh_finished_at: { type: "string" format: "date-time" } refresh_started_at: { type: "string" format: "date-time" } refresh_state: { type: "string" } refresh_task_id: { type: "string" format: "uuid" } uid: { type: "string" } updated_at: { type: "string" format: "date-time" } } 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" } } } } } }