Agorapulse · Schema

CommunityManagementByDate

Common properties for community management report

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
date string Date in ISO format YYYY-MM-DD
sentRepliesCount integer Number of replies sent
actions array List of actions made by users
View JSON Schema on GitHub

JSON Schema

communitymanagementbydate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CommunityManagementByDate",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "description": "Date in ISO format YYYY-MM-DD",
      "example": "2020-04-18T00:00:00.000Z"
    },
    "sentRepliesCount": {
      "type": "integer",
      "description": "Number of replies sent",
      "format": "int64",
      "example": 12
    },
    "actions": {
      "type": "array",
      "description": "List of actions made by users",
      "oneOf": [
        {
          "$ref": "#/components/schemas/CommunityManagementAction"
        },
        {
          "$ref": "#/components/schemas/FacebookCommunityManagementAction"
        },
        {
          "$ref": "#/components/schemas/LinkedinCommunityManagementAction"
        },
        {
          "$ref": "#/components/schemas/InstagramCommunityManagementAction"
        },
        {
          "$ref": "#/components/schemas/TiktokCommunityManagementAction"
        },
        {
          "$ref": "#/components/schemas/YoutubeCommunityManagementAction"
        }
      ],
      "items": {
        "$ref": "#/components/schemas/CommunityManagementAction"
      }
    }
  },
  "description": "Common properties for community management report"
}