Factset · Schema
CustomSymbolDto
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| code | string | |
| name | string | |
| description | string | |
| customFields | array | |
| createdDate | string | |
| createdBy | string | |
| standardSymbol | string | |
| isAddressAutoFilled | boolean | |
| isDescriptionAutoFilled | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CustomSymbolDto",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"customFields": {
"type": "array"
},
"createdDate": {
"type": "string"
},
"createdBy": {
"type": "string"
},
"standardSymbol": {
"type": "string"
},
"isAddressAutoFilled": {
"type": "boolean"
},
"isDescriptionAutoFilled": {
"type": "boolean"
}
}
}