Agorapulse · Schema

Profile

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
uid string
name string
network object
View JSON Schema on GitHub

JSON Schema

profile.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Profile",
  "required": [
    "name",
    "network",
    "uid"
  ],
  "type": "object",
  "properties": {
    "uid": {
      "minLength": 1,
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "network": {
      "$ref": "#/components/schemas/Network"
    }
  }
}