action motaword_get_document { label: "View a single document" description: "View a single document from your MotaWord account with its translation info." provider: motaword method: GET path: "/documents/{documentId}" encoding: json input: { type: "object" properties: { documentId: { type: "string" } } required: ["documentId"] 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" } } } }