mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
"use strict";
|
|
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": {
|
|
"TrendingSymbol": {
|
|
"type": "object",
|
|
"properties": {
|
|
"symbol": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"symbol"
|
|
],
|
|
"additionalProperties": {}
|
|
},
|
|
"TrendingSymbolsResult": {
|
|
"type": "object",
|
|
"properties": {
|
|
"count": {
|
|
"type": "number"
|
|
},
|
|
"quotes": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/TrendingSymbol"
|
|
}
|
|
},
|
|
"jobTimestamp": {
|
|
"type": "number"
|
|
},
|
|
"startInterval": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"required": [
|
|
"count",
|
|
"quotes",
|
|
"jobTimestamp",
|
|
"startInterval"
|
|
],
|
|
"additionalProperties": {}
|
|
},
|
|
"TrendingSymbolsOptions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"lang": {
|
|
"type": "string"
|
|
},
|
|
"region": {
|
|
"type": "string"
|
|
},
|
|
"count": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"trendingSymbols": {}
|
|
}
|
|
};
|
|
|