yahoo-finance2
Version:
JS API for Yahoo Finance
54 lines (53 loc) • 1.87 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.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": {}
}
};