action motaword_get_continuous_project_document { label: "View a continuous document" description: "View the details of a source document in continuous translation project." provider: motaword method: GET path: "/continuous_projects/{projectId}/documents/{documentId}" encoding: json input: { type: "object" properties: { documentId: { type: "integer" format: "int64" } projectId: { type: "integer" format: "int64" } } required: ["documentId", "projectId"] additionalProperties: false } output: { type: "object" properties: { billed_word_count: { type: "integer" format: "int64" } id: { type: "string" } links: { type: "object" } name: { type: "string" } post_edit_enabled: { type: "boolean" } project_id: { type: "string" } source_language: { type: "string" } target_languages: { type: "array" items: { type: "string" } } word_count: { type: "integer" format: "int64" } } } }