Factset · Schema
ApiEndpoint
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the api endpoint |
| name | string | API endpoint path |
| description | string | A description of the endpoint |
| developerPortalLink | string | Developer Portal URL of the endpoint |
| entitled | string | Flag indicating if the user is entitled to access the data in their subscriptions |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ApiEndpoint",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the api endpoint"
},
"name": {
"type": "string",
"description": "API endpoint path"
},
"description": {
"type": "string",
"description": "A description of the endpoint"
},
"developerPortalLink": {
"type": "string",
"description": "Developer Portal URL of the endpoint"
},
"entitled": {
"type": "string",
"description": "Flag indicating if the user is entitled to access the data in their subscriptions"
}
}
}