action core_get_repository_by_id { label: "Get repository by CORE repository ID" description: "Method will retrieve a repository based on given CORE repository ID." provider: core method: GET path: "/repositories/get/{repositoryId}" encoding: json input: { type: "object" properties: { depositHistory: { type: "string" } depositHistoryCumulative: { type: "string" } repositoryId: { type: "string" } stats: { type: "string" } } required: ["repositoryId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }