action motaword_get_similar_documents { label: "Find documents similar to this document." description: "Find documents similar to this document. Optionally, include translation information." provider: motaword method: GET path: "/documents/{documentId}/similars" encoding: json input: { type: "object" properties: { documentId: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } "with[]": { type: "array" items: { type: "string" enum: ["preview", "editors"] } } } required: ["documentId"] additionalProperties: false } output: { type: "object" properties: { documents: { type: "array" items: { type: "object" properties: { file_type: { type: "string" description: "Extension of the file" } has_custom_package: { type: "boolean" } id: { type: "integer" format: "int64" } links: { type: "object" } manual_files: { type: "array" items: { type: "object" properties: { driveFileId: { type: "integer" format: "int64" } isProofread: { type: "boolean" } isTranslated: { type: "boolean" } language: { type: "string" } proofreadingFileId: { type: "integer" format: "int64" } translationFileId: { type: "integer" format: "int64" } } } } name: { type: "string" } project_id: { type: "integer" format: "int64" } review_in_manual_editor: { type: "boolean" } scheme: { type: "object" } search_score: { type: "number" format: "float" } source_language: { type: "string" } subject: { type: "string" } target_languages: { type: "array" items: { type: "string" } } uploaded_at: { type: "integer" format: "int64" description: "Unix epoch time" } word_count: { type: "integer" format: "int64" } } } } meta: { type: "object" properties: { paging: { type: "object" properties: { count: { type: "integer" format: "int64" } links: { type: "object" } page: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } total_count: { type: "integer" format: "int64" } } } } } } } }