action docker_get_namespace_data_by_timespan { label: "Get namespace data for timespan" description: "Gets a list of URLs that can be used to download the pull data for the given namespace and timespan" provider: docker method: GET path: "/namespaces/{namespace}/pulls/exports/years/{year}/{timespantype}/{timespan}/{dataview}" encoding: json input: { type: "object" properties: { dataview: { type: "string" enum: ["raw", "summary", "repo-summary"] } namespace: { type: "string" } timespan: { type: "integer" } timespantype: { type: "string" enum: ["months", "weeks"] } year: { type: "integer" } } required: ["dataview", "namespace", "timespan", "timespantype", "year"] additionalProperties: false } output: { properties: { data: { type: "array" items: { properties: { size: { type: "integer" format: "int64" } url: { type: "string" } } } } } } }