action core_get_search_query { label: "Search through all resources" description: "Searches through all resources and returns a JSON array with search results. Method searches through all resources and all fields. The results are ordered by relevance score and contain type of the relevant resource and its ID. The metadata of each resource need to be obtained through an appropriate method." provider: core method: GET path: "/search/{query}" encoding: json input: { type: "object" properties: { page: { type: "string" } pageSize: { type: "string" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }