tastytrade · Schema
SymbolData
FinanceBrokerageTradingOptionsFuturesEquitiesCryptoMarket DataWebSocket
Properties
| Name | Type | Description |
|---|---|---|
| symbol | string | Symbol |
| description | string | Company name |
| listed-market | string | Listed Market |
| price-increments | string | Price Increments |
| trading-hours | string | Trading Hours |
| options | boolean | Has listed options |
| instrument-type | string | Instrument Type |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://developer.tastytrade.com/schemas/symbol-search/SymbolData",
"title": "SymbolData",
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Symbol"
},
"description": {
"type": "string",
"description": "Company name"
},
"listed-market": {
"type": "string",
"description": "Listed Market"
},
"price-increments": {
"type": "string",
"description": "Price Increments"
},
"trading-hours": {
"type": "string",
"description": "Trading Hours"
},
"options": {
"type": "boolean",
"description": "Has listed options"
},
"instrument-type": {
"type": "string",
"description": "Instrument Type"
}
}
}