action anchore_get_system_feeds { label: "list feeds operations and information" description: "Return a list of feed and their groups along with update and record count information. This data reflects the state of the policy engine, not the upstream feed service itself." provider: anchore method: GET path: "/system/feeds" encoding: json output: { type: "array" items: { type: "object" description: "Metadata on a single feed based on what the engine finds from querying the endpoints" properties: { created_at: { type: "string" format: "date-time" description: "Date the metadata record was created in engine (first seen on source)" } groups: { type: "array" items: { type: "object" properties: { created_at: { type: "string" format: "date-time" } last_sync: { type: "string" format: "date-time" } name: { type: "string" } record_count: { type: "integer" } } } } last_full_sync: { type: "string" format: "date-time" } name: { type: "string" description: "name of the feed" } updated_at: { type: "string" format: "date-time" description: "Date the metadata was last updated" } } } } }