action oxforddictionaries_get_search_source_search_language_translations_target_search_lan { label: "Retrieve possible translation matches to input" description: "\nUse this to find matches in our translation dictionaries.\n\n
\n" provider: oxforddictionaries method: GET path: "/search/{source_search_language}/translations={target_search_language}" 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_search_language: { type: "string" enum: ["en", "es", "nso", "zu", "ms", "id", "tn", "ur", "de", "pt"] } target_search_language: { type: "string" enum: ["es", "nso", "zu", "ms", "id", "tn", "ro", "de", "pt"] } } required: ["source_search_language", "target_search_language"] 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." } } } } } } }