action motaword_get_formats { label: "List of supported file formats" description: "Get a list of supported formats for documents, style guides and extensions.\n" provider: motaword method: GET path: "/formats" encoding: json output: { type: "object" items: { type: "object" properties: { documents: { type: "object" properties: { extensions: { type: "array" items: { type: "string" } } mimes: { type: "array" items: { type: "string" } } } } glossaries: { type: "object" properties: { extensions: { type: "array" items: { type: "string" } } } } styleguides: { type: "object" properties: { extensions: { type: "array" items: { type: "string" } } } } } } } }