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