Agorapulse · Schema
AbstractItem
Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| parentId | string | |
| workspaceId | integer | |
| creationDate | string | |
| type | object | |
| text | string | |
| agorapulseLink | string | |
| networkLink | string | |
| profile | object | |
| creator | object | |
| labels | array | |
| sentiment | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AbstractItem",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"parentId": {
"type": "string"
},
"workspaceId": {
"type": "integer",
"format": "int64"
},
"creationDate": {
"type": "string",
"format": "date-time"
},
"type": {
"$ref": "#/components/schemas/ItemType"
},
"text": {
"type": "string"
},
"agorapulseLink": {
"type": "string"
},
"networkLink": {
"type": "string"
},
"profile": {
"$ref": "#/components/schemas/Profile"
},
"creator": {
"$ref": "#/components/schemas/ItemCreator"
},
"labels": {
"type": "array",
"items": {
"type": "string"
}
},
"sentiment": {
"$ref": "#/components/schemas/ItemSentiment"
}
}
}