action oxforddictionaries_get_filters { label: "Lists available filters" description: "Returns a list of all the valid filters to construct API calls.\n" provider: oxforddictionaries method: GET path: "/filters" encoding: json output: { description: "Schema for the Filters endpoint." properties: { metadata: { type: "object" description: "Additional Information provided by OUP" } results: { type: "object" description: "A mapping of filters available per endpoints." properties: { entries: { type: "array" items: { type: "string" } } inflections: { type: "object" additionalProperties: true } translations: { type: "object" additionalProperties: true } wordlist: { type: "object" additionalProperties: true } } additionalProperties: false } } } }