action oxforddictionaries_get_entries_source_lang_word_id_regions_region { label: "Specify GB or US dictionary for English entry search" description: "\nUSe this filter to restrict the lookup to either our Oxford Dictionary of English (GB) or New Oxford American Dictionary (US).\n" provider: oxforddictionaries method: GET path: "/entries/{source_lang}/{word_id}/regions={region}" encoding: json input: { type: "object" properties: { region: { type: "string" enum: ["gb", "us"] } source_lang: { type: "string" enum: ["en"] } word_id: { type: "string" } } required: ["region", "source_lang", "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 } } } } }