Factset · Schema
MeetingDto
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| start | string | |
| end | string | |
| createdAt | string | |
| authorId | string | |
| title | string | |
| identifier | string | |
| organizer | string | |
| organizerId | string | |
| body | string | |
| averageRating | integer | |
| alertAttendees | boolean | |
| alertAuthor | boolean | |
| locations | array | |
| attendees | array | |
| customFields | array | |
| relatedSymbols | array | |
| relatedContacts | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "MeetingDto",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"start": {
"type": "string"
},
"end": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"authorId": {
"type": "string"
},
"title": {
"type": "string"
},
"identifier": {
"type": "string"
},
"organizer": {
"type": "string"
},
"organizerId": {
"type": "string"
},
"body": {
"type": "string"
},
"averageRating": {
"type": "integer"
},
"alertAttendees": {
"type": "boolean"
},
"alertAuthor": {
"type": "boolean"
},
"locations": {
"type": "array"
},
"attendees": {
"type": "array"
},
"customFields": {
"type": "array"
},
"relatedSymbols": {
"type": "array"
},
"relatedContacts": {
"type": "array"
}
}
}