action motaword_get_user_project_stats { label: "Returns a user's project statistics." provider: motaword method: GET path: "/{userId}/stats/projects" encoding: json input: { type: "object" properties: { userId: { type: "integer" format: "int64" } } required: ["userId"] additionalProperties: false } output: { type: "object" properties: { stats: { type: "array" items: { type: "object" properties: { languages: { type: "array" items: { type: "string" } } month: { type: "string" } number_of_projects: { type: "integer" format: "int64" } total_spending: { type: "number" format: "float" } week: { type: "string" } } } } } } }