Factset · Schema
Schema
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique URI of the schema. When applicable, service providers MUST specify the URI. |
| name | string | The schema's human-readable name. When applicable, service providers MUST specify the name, e.g., 'User'. |
| description | string | The schema's human-readable name. When applicable, service providers MUST specify the name, e.g., 'User'. |
| attributes | array | A complex attribute that includes the attributes of a schema. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Schema",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique URI of the schema. When applicable, service providers MUST specify the URI."
},
"name": {
"type": "string",
"description": "The schema's human-readable name. When applicable, service providers MUST specify the name, e.g., 'User'."
},
"description": {
"type": "string",
"description": "The schema's human-readable name. When applicable, service providers MUST specify the name, e.g., 'User'."
},
"attributes": {
"type": "array",
"description": "A complex attribute that includes the attributes of a schema."
}
}
}