UNPKG

yahoo-finance2

Version:
52 lines (51 loc) 1.79 kB
export default { "$schema": "http://json-schema.org/draft-07/schema#", "$comment": "DO NOT EDIT THIS FILE. It is generated automatically from typescript interfaces in the project. To update, run `deno task schema` (with optional `--watch`). In VSCode, this is run automatically for you on folder open.", "definitions": { "RecommendationsBySymbolResponse": { "type": "object", "properties": { "recommendedSymbols": { "type": "array", "items": { "type": "object", "properties": { "score": { "type": "number" }, "symbol": { "type": "string" } }, "required": [ "score", "symbol" ], "additionalProperties": {} } }, "symbol": { "type": "string" } }, "required": [ "recommendedSymbols", "symbol" ], "additionalProperties": {} }, "RecommendationsBySymbolResponseArray": { "type": "array", "items": { "$ref": "#/definitions/RecommendationsBySymbolResponse" } }, "RecommendationsBySymbolOptions": { "type": "object", "additionalProperties": { "not": {} } }, "recommendationsBySymbol": {} } };