action openchannel_post_stats_increment_field { label: "Increments a statistics field" description: "increment a statistics field" provider: openchannel method: POST path: "/stats/increment/{field}" encoding: json input: { type: "object" properties: { appId: { type: "string" } date: { type: "integer" format: "int64" } field: { type: "string" } userId: { type: "string" } value: { type: "integer" } } required: ["appId", "field"] additionalProperties: false } output: { type: "object" additionalProperties: true } }