action opentrials_autocomplete { label: "autocomplete" description: "Autocomplete search feature for supported database entities (`location`). It has the same options as a regular `search` operation, with an extra **required** `in` parameter indicating the entity type to search." provider: opentrials method: GET path: "/search/autocomplete/{in}" encoding: json input: { type: "object" properties: { in: { type: "string" } page: { type: "string" } per_page: { type: "string" } q: { type: "string" } } required: ["in"] additionalProperties: false } output: { type: "object" additionalProperties: true } }