action oxforddictionaries_get_entries_source_language_word_id_sentences { label: "Retrieve corpus sentences for a given word" description: "\nUse this to retrieve sentences extracted from corpora which show how a word is used in the language. This is available for English and Spanish. For English, the sentences are linked to the correct [sense](documentation/glossary?term=sense) of the word in the dictionary. In Spanish, they are linked at the [headword](documentation/glossary?term=headword) level.\n
\n" provider: oxforddictionaries method: GET path: "/entries/{source_language}/{word_id}/sentences" encoding: json input: { type: "object" properties: { source_language: { type: "string" enum: ["en", "es"] } word_id: { type: "string" } } required: ["source_language", "word_id"] additionalProperties: false } output: { type: "object" description: "Schema for the 'sentences' endpoint" 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", "sentences", "text"] properties: { grammaticalFeatures: { type: "array" description: "The different forms are correlated with meanings or functions which we text as 'features'" items: { type: "object" required: ["text", "type"] properties: { text: { type: "string" } type: { type: "string" } } 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" } sentences: { type: "array" description: "A list of written or spoken rendering of examples of use of a word or text" items: { type: "object" required: ["text"] properties: { definitions: { type: "array" items: { type: "object" additionalProperties: true } } domains: { type: "object" additionalProperties: true } notes: { type: "array" description: "various types of notes that appear" items: { type: "object" additionalProperties: true } } regions: { type: "object" additionalProperties: true } registers: { type: "object" additionalProperties: true } senseIds: { type: "object" additionalProperties: true } text: { type: "string" } translations: { type: "array" description: "A list of written or spoken rendering of the meaning of a word or text in another language(s)" items: { type: "object" additionalProperties: true } } } additionalProperties: false } } text: { type: "string" description: "A given written or spoken realisation of a an entry." } } 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 } } } } }