Factset · Schema

field

FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch

Properties

Name Type Description
field string Field identifier to be used as `fields` input in _Terms-and-Conditions_ endpoints.
name string Plain text name of the field.
category string Primary Category of field item, such as COUPON_DETAILS or SECURITY_DETAILS.
dataType string The Data Type of the respective field, including - * date * string * integer * double
View JSON Schema on GitHub

JSON Schema

factset-terms-and-conditions-field-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "field",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "description": "Field identifier to be used as `fields` input in _Terms-and-Conditions_ endpoints.\n"
    },
    "name": {
      "type": "string",
      "description": "Plain text name of the field."
    },
    "category": {
      "type": "string",
      "description": "Primary Category of field item, such as COUPON_DETAILS or SECURITY_DETAILS."
    },
    "dataType": {
      "type": "string",
      "description": "The Data Type of the respective field, including -\n* date\n* string\n* integer\n* double\n"
    }
  }
}