Factset · Schema
CreateNoteDto
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| title | string | |
| identifier | string | |
| date | string | |
| subjectId | string | |
| recommendationId | string | |
| sentimentId | string | |
| source | string | |
| link | string | |
| relatedSymbols | array | |
| relatedContacts | array | |
| customFieldValues | array | |
| isPersonal | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CreateNoteDto",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"identifier": {
"type": "string"
},
"date": {
"type": "string"
},
"subjectId": {
"type": "string"
},
"recommendationId": {
"type": "string"
},
"sentimentId": {
"type": "string"
},
"source": {
"type": "string"
},
"link": {
"type": "string"
},
"relatedSymbols": {
"type": "array"
},
"relatedContacts": {
"type": "array"
},
"customFieldValues": {
"type": "array"
},
"isPersonal": {
"type": "boolean"
}
}
}