action docker_get_namespace { label: "Get namespace" description: "Gets metadata associated with specified namespace, including extra repos associated with the namespace" provider: docker method: GET path: "/namespaces/{namespace}" encoding: json input: { type: "object" properties: { namespace: { type: "string" } } required: ["namespace"] additionalProperties: false } output: { properties: { datasets: { type: "array" items: { properties: { name: { type: "string" enum: ["pulls"] } timespans: { type: "array" items: { type: "string" enum: ["months", "weeks"] } } views: { type: "array" items: { type: "string" enum: ["raw", "summary", "repo-summary"] } } } } } extraRepos: { type: "array" items: { type: "string" } } namespace: { type: "string" } } } }