Agorapulse · Schema

CreateSimpleScheduleOpenRequest.ProfileScheduling

Scheduling configuration for a specific profile

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
profileUid string Unique identifier of the profile
publishingDates array List of publishing dates in ISO-8601 format
View JSON Schema on GitHub

JSON Schema

createsimplescheduleopenrequest-profilescheduling.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateSimpleScheduleOpenRequest.ProfileScheduling",
  "required": [
    "profileUid",
    "publishingDates"
  ],
  "type": "object",
  "properties": {
    "profileUid": {
      "minLength": 1,
      "type": "string",
      "description": "Unique identifier of the profile",
      "example": "profile_123"
    },
    "publishingDates": {
      "minItems": 1,
      "type": "array",
      "description": "List of publishing dates in ISO-8601 format",
      "example": [
        "2024-12-25T10:00:00.000Z",
        "2024-12-26T15:30:00.000Z"
      ],
      "items": {
        "type": "string",
        "format": "date-time"
      }
    }
  },
  "description": "Scheduling configuration for a specific profile"
}