action docker_get_namespace_timespan_metadata { label: "Get namespace metadata for timespan" description: "Gets info about data for the given namespace and timespan" provider: docker method: GET path: "/namespaces/{namespace}/pulls/exports/years/{year}/{timespantype}/{timespan}" encoding: json input: { type: "object" properties: { namespace: { type: "string" } timespan: { type: "integer" } timespantype: { type: "string" enum: ["months", "weeks"] } year: { type: "integer" } } required: ["namespace", "timespan", "timespantype", "year"] additionalProperties: false } output: { type: "object" } }