changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "classification": {
+ "description": "Label, e.g. `Greed`, `Neutral`, `Extreme Fear`",
+ "type": "string"
+ },
+ "history": {
+ "description": "Recent trend of the index",
+ "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"
+ },
+ "updatedAt": {
+ "type": "string"
+ },
+ "value": {
+ "description": "Current index, 0 (extreme fear) to 100 (extreme greed)",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "value",
+ "classification"
+ ],
+ "type": "object"
+}