Factset · Schema
LocationResource
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| schemas | array | |
| id | string | |
| externalId | string | |
| name | string | Name of the location. |
| description | string | Description of the location. |
| address1 | string | First line of location's address. |
| address2 | string | Second line of location's address. |
| address3 | string | Third line of location's address. |
| locality | string | City of location. |
| region | string | State or province of location. |
| postalCode | string | Postal code of location. |
| country | string | Country of location. |
| phoneNumber | string | Phone number of location. |
| mainLocation | string | |
| meta | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LocationResource",
"type": "object",
"properties": {
"schemas": {
"type": "array"
},
"id": {
"type": "string"
},
"externalId": {
"type": "string"
},
"name": {
"type": "string",
"description": "Name of the location."
},
"description": {
"type": "string",
"description": "Description of the location."
},
"address1": {
"type": "string",
"description": "First line of location's address."
},
"address2": {
"type": "string",
"description": "Second line of location's address."
},
"address3": {
"type": "string",
"description": "Third line of location's address."
},
"locality": {
"type": "string",
"description": "City of location."
},
"region": {
"type": "string",
"description": "State or province of location."
},
"postalCode": {
"type": "string",
"description": "Postal code of location."
},
"country": {
"type": "string",
"description": "Country of location."
},
"phoneNumber": {
"type": "string",
"description": "Phone number of location."
},
"mainLocation": {
"type": "string"
},
"meta": {
"type": "object"
}
}
}