addedOutput schema / properties / data
Added value: +{
+ "additionalProperties": true,
+ "properties": {
+ "count": {
+ "type": "number"
+ },
+ "history": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "category": {
+ "enum": [
+ "lending",
+ "borrowing",
+ "staking",
+ "price"
+ ],
+ "type": "string"
+ },
+ "coinId": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "createdAt": {
+ "type": "string"
+ },
+ "metadata": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "provider": {
+ "type": "string"
+ },
+ "providerSymbol": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rate": {
+ "type": "number"
+ },
+ "symbol": {
+ "type": "string"
+ },
+ "timestamp": {
+ "description": "ISO-8601 observation time (oldest → newest)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "provider",
+ "symbol",
+ "category",
+ "rate",
+ "timestamp",
+ "createdAt",
+ "coinId"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "symbol": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "symbol",
+ "history",
+ "count"
+ ],
+ "type": "object"
+}
removedOutput schema / properties / points
Removed value: -{
- "description": "Time-ordered rate observations (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"
-}