action oxforddictionaries_get_search_source_lang { label: "Retrieve possible matches to input" description: "\nUse this to retrieve possible [headword](documentation/glossary?term=headword) matches for a given string of text. The results are culculated using headword matching, fuzzy matching, and [lemmatization](documentation/glossary?term=lemma) \n\n
\n" provider: oxforddictionaries method: GET path: "/search/{source_lang}" encoding: json input: { type: "object" properties: { limit: { type: "string" } offset: { type: "string" } prefix: { type: "boolean" enum: ["false", "true"] } q: { type: "string" } regions: { type: "string" } source_lang: { type: "string" enum: ["en", "es", "hi", "lv", "sw", "ta", "gu"] } } required: ["source_lang"] additionalProperties: false } output: { type: "object" description: "Schema for wordlist endpoint." properties: { metadata: { type: "object" description: "Additional Information provided by OUP" } results: { type: "array" description: "A list of found words" items: { type: "object" description: "Description of found word" required: ["id", "word"] properties: { id: { type: "string" description: "The identifier of a word" } matchString: { type: "string" } matchType: { type: "string" } region: { type: "string" description: "Name of region." } word: { type: "string" description: "A given written or spoken realisation of a an entry, lowercased." } } } } } } }