action oxforddictionaries_get_entries_source_translation_language_word_id_translations_tar { label: "Retrieve translation for a given word" description: "\nUse this to return translations for a given word. In the event that a word in the dataset does not have a direct translation, the response will be a [definition](documentation/glossary?term=entry) in the target language.\n\n
\n" provider: oxforddictionaries method: GET path: "/entries/{source_translation_language}/{word_id}/translations={target_translation_language}" encoding: json input: { type: "object" properties: { source_translation_language: { type: "string" enum: ["en", "es", "nso", "zu", "ms", "id", "tn", "ur", "de", "pt"] } target_translation_language: { type: "string" enum: ["es", "nso", "zu", "ms", "id", "tn", "ro", "de", "pt"] } word_id: { type: "string" } } required: ["source_translation_language", "target_translation_language", "word_id"] additionalProperties: false } output: { type: "object" description: "Schema for the 'entries' endpoints" properties: { metadata: { type: "object" description: "Additional Information provided by OUP" } results: { type: "array" description: "A list of entries and all the data related to them" items: { type: "object" description: "Description of a word" required: ["id", "language", "lexicalEntries", "word"] properties: { id: { type: "string" description: "The identifier of a word" } language: { type: "string" description: "IANA language code" } lexicalEntries: { type: "array" description: "A grouping of various senses in a specific language, and a lexical category that relates to a word" items: { type: "object" description: "Description of an entry for a particular part of speech" required: ["language", "lexicalCategory", "text"] properties: { derivativeOf: { type: "array" description: "A list of written or spoken words" items: { type: "object" required: ["text", "id"] properties: { domains: { type: "array" items: { type: "object" additionalProperties: true } } id: { type: "string" description: "The identifier of the word" } language: { type: "string" description: "IANA language code specifying the language of the word" } regions: { type: "object" additionalProperties: true } registers: { type: "object" additionalProperties: true } text: { type: "string" } } additionalProperties: false } } derivatives: { type: "object" additionalProperties: true } entries: { type: "array" items: { type: "object" properties: { etymologies: { type: "object" additionalProperties: true } grammaticalFeatures: { type: "array" description: "The different forms are correlated with meanings or functions which we text as 'features'" items: { type: "object" additionalProperties: true } } homographNumber: { type: "string" description: "Identifies the homograph grouping. The last two digits identify different entries of the same homograph. The first one/two digits identify the homograph number." } notes: { type: "array" description: "various types of notes that appear" items: { type: "object" additionalProperties: true } } pronunciations: { type: "array" description: "A list of possible pronunciations of a word" items: { type: "object" additionalProperties: true } } senses: { type: "array" description: "Complete list of senses" items: { type: "object" additionalProperties: true } } variantForms: { type: "array" description: "Various words that are used interchangeably depending on the context, e.g 'aluminium' and 'aluminum'" items: { type: "object" additionalProperties: true } } } additionalProperties: false } } grammaticalFeatures: { type: "object" additionalProperties: true } language: { type: "string" description: "IANA language code" } lexicalCategory: { type: "string" description: "A linguistic category of words (or more precisely lexical items), generally defined by the syntactic or morphological behaviour of the lexical item in question, such as noun or verb" } notes: { type: "object" additionalProperties: true } pronunciations: { type: "object" additionalProperties: true } text: { type: "string" description: "A given written or spoken realisation of a an entry." } variantForms: { type: "object" additionalProperties: true } } additionalProperties: false } } pronunciations: { type: "object" additionalProperties: true } type: { type: "string" description: "The json object type. Could be 'headword', 'inflection' or 'phrase'" } word: { type: "string" description: "A given written or spoken realisation of a an entry, lowercased." } } additionalProperties: false } } } } }