action motaword_get_filter_contents { label: "Returns available options for selected timeframe." provider: motaword method: POST path: "/reports/filter" encoding: json input: { type: "object" properties: { date_from: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } date_to: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } } } output: { type: "object" properties: { budget_codes: { type: "array" items: { type: "string" } } categories: { type: "array" items: { type: "string" } } clients: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int64" } name: { type: "string" } } } } documents: { type: "array" items: { type: "object" additionalProperties: true } } projects: { type: "array" items: { type: "object" additionalProperties: true } } severities: { type: "array" items: { type: "string" } } source_languages: { type: "array" items: { type: "string" } } subjects: { type: "array" items: { type: "string" } } target_languages: { type: "array" items: { type: "string" } } vendors: { type: "array" items: { type: "object" additionalProperties: true } } } } }