action core_get_repositories_search_query { label: "Search through all repositories" description: "Searches through all repositories and returns a JSON array with search results. Method searches through all repository fields." provider: core method: GET path: "/repositories/search/{query}" encoding: json input: { type: "object" properties: { depositHistory: { type: "string" } depositHistoryCumulative: { type: "string" } page: { type: "string" } pageSize: { type: "string" } query: { type: "string" } stats: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }