action oxforddictionaries_get_entries_source_lang_word_id_synonyms { label: "Retrieve words that are similar" description: "\nUse this to retrieve words that are similar in meaning to the input word ([synonym](documentation/glossary?term=synonym)).\n\n
\n" provider: oxforddictionaries method: GET path: "/entries/{source_lang}/{word_id}/synonyms" encoding: json input: { type: "object" properties: { source_lang: { type: "string" enum: ["en"] } word_id: { type: "string" } } required: ["source_lang", "word_id"] additionalProperties: false } output: { type: "object" description: "Schema for thesaurus endpoint" properties: { metadata: { type: "object" description: "Additional Information provided by OUP" } results: { type: "array" description: "A list of found synonyms or antonyms" items: { type: "object" description: "description of thesaurus information of a word" required: ["word", "id", "language", "lexicalEntries"] 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: { entries: { type: "array" items: { type: "object" properties: { 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." } 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 } } 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" } text: { type: "string" description: "A given written or spoken realisation of a an entry." } variantForms: { type: "object" additionalProperties: true } } additionalProperties: false } } 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 } } } } }