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