action oxforddictionaries_get_filters_endpoint { label: "Lists available filters for specific endpoint" description: "Returns a list of all the valid filters for a given endpoint to construct API calls.\n" provider: oxforddictionaries method: GET path: "/filters/{endpoint}" encoding: json input: { type: "object" properties: { endpoint: { type: "string" enum: ["entries", "inflections", "translations"] } } required: ["endpoint"] additionalProperties: false } 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 } } } }