action motaword_get_continuous_project_progress { label: "Monitor progress and status of a continous project" description: "Monitor the translation progress of an ongoing continuous project in real-time." provider: motaword method: GET path: "/continuous_projects/{projectId}/progress" encoding: json input: { type: "object" properties: { filterByLanguage: { type: "string" } projectId: { type: "integer" format: "int64" } } required: ["projectId"] additionalProperties: false } output: { type: "object" properties: { costs: { type: "object" properties: { mt: { type: "object" properties: { amount: { type: "number" format: "float" } currency: { type: "string" } } } post_edit: { type: "object" additionalProperties: true } saved: { type: "object" additionalProperties: true } total: { type: "object" additionalProperties: true } } } progress: { type: "object" } word_counts: { type: "object" properties: { mt: { type: "integer" format: "int64" } post_edit: { type: "integer" format: "int64" } total: { type: "integer" format: "int64" } } } } } }