action oxforddictionaries_get_regions_source_language { label: "Lists available regions in a monolingual dataset" description: "Returns a list of the available [regions](documentation/glossary?term=regions) for a given monolingual language dataset.\n" provider: oxforddictionaries method: GET path: "/regions/{source_language}" encoding: json input: { type: "object" properties: { source_language: { type: "string" enum: ["en"] } } required: ["source_language"] additionalProperties: false } output: { description: "Schema for region endpoint." properties: { metadata: { type: "object" description: "Additional Information provided by OUP" } results: { type: "object" description: "A mapping of regions available." } } } }