action motaword_get_responsivity { label: "View your vendor responsiveness" description: "View your statistical analysis of responsiveness to our translation projects, invitations, notifications and such." provider: motaword method: GET path: "/responsivity" encoding: json input: { type: "object" properties: { period: { type: "string" enum: ["monthly", "weekly"] } } additionalProperties: false } output: { type: "object" properties: { links: { type: "object" } responsivity: { type: "array" items: { type: "object" properties: { invited: { type: "integer" format: "int64" } month: { type: "string" } notEntered: { type: "integer" format: "int64" } onlyEntered: { type: "integer" format: "int64" } score: { type: "number" format: "float" } week: { type: "string" } worked: { type: "integer" format: "int64" } } } } } } }