addedOutput schema / properties / data
Added value: +{
+ "additionalProperties": true,
+ "properties": {
+ "coinId": {
+ "type": "string"
+ },
+ "days": {
+ "type": "integer"
+ },
+ "lastUpdated": {
+ "description": "ISO-8601 timestamp of the most recent refresh",
+ "type": "string"
+ },
+ "prices": {
+ "description": "Price points, oldest → newest",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "marketCap": {
+ "type": "number"
+ },
+ "price": {
+ "type": "number"
+ },
+ "timestamp": {
+ "description": "Unix epoch milliseconds",
+ "type": "number"
+ },
+ "volume": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "timestamp",
+ "price"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source": {
+ "description": "Where the data came from",
+ "enum": [
+ "rate_history",
+ "cache",
+ "coingecko"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "coinId",
+ "days",
+ "source",
+ "prices",
+ "lastUpdated"
+ ],
+ "type": "object"
+}
removedOutput schema / properties / points
Removed value: -{
- "description": "Price points, oldest → newest",
- "items": {
- "additionalProperties": true,
- "properties": {
- "timestamp": {
- "description": "ISO-8601 timestamp of the data point",
- "type": "string"
- },
- "value": {
- "description": "The recorded numeric value",
- "type": "number"
- }
- },
- "required": [
- "timestamp",
- "value"
- ],
- "type": "object"
- },
- "type": "array"
-}