action docker_get_namespace_years { label: "Get years with data" description: "Gets a list of years that have data for the given namespace" provider: docker method: GET path: "/namespaces/{namespace}/pulls/exports/years" encoding: json input: { type: "object" properties: { namespace: { type: "string" } } required: ["namespace"] additionalProperties: false } output: { properties: { years: { type: "array" items: { properties: { year: { type: "integer" } } } } } } }