Agorapulse · Schema

GroupOfPostsSummary

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
uid string
agorapulseLink string
type object
labels array
profileScheduling array
View JSON Schema on GitHub

JSON Schema

groupofpostssummary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GroupOfPostsSummary",
  "required": [
    "agorapulseLink",
    "labels",
    "profileScheduling",
    "type",
    "uid"
  ],
  "type": "object",
  "properties": {
    "uid": {
      "minLength": 1,
      "type": "string"
    },
    "agorapulseLink": {
      "type": "string"
    },
    "type": {
      "$ref": "#/components/schemas/PostType"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "profileScheduling": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupOfPostsSummary.ProfileSchedulingSummary"
      }
    }
  }
}