Agorapulse · Schema

GroupOfPosts

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
uid string Unique identifier for the group of posts
actor object The user who performed the action
link string Link to the post in Agorapulse application
labels array Labels associated with the group of posts
posts array List of posts in the group
View JSON Schema on GitHub

JSON Schema

groupofposts.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GroupOfPosts",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Unique identifier for the group of posts"
    },
    "actor": {
      "$ref": "#/components/schemas/User",
      "description": "The user who performed the action"
    },
    "link": {
      "type": "string",
      "description": "Link to the post in Agorapulse application"
    },
    "labels": {
      "type": "array",
      "items": "string",
      "description": "Labels associated with the group of posts"
    },
    "posts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Post"
      },
      "description": "List of posts in the group"
    }
  }
}