action core_search_articles { label: "Search through all documents" description: "Searches through all articles and returns a JSON array with search results. Method searches through all article fields." provider: core method: GET path: "/articles/search/{query}" encoding: json input: { type: "object" properties: { citations: { type: "string" } duplicate: { type: "string" } faithfulMetadata: { type: "string" } fulltext: { type: "string" } metadata: { type: "string" } page: { type: "string" } pageSize: { type: "string" } query: { type: "string" } similar: { type: "string" } urls: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }