changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "current": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {
+ "computedAt": {
+ "description": "ISO timestamp.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "YYYY-MM-DD.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "direction": {
+ "description": "bullish, bearish or neutral.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "reliable": {
+ "description": "False when the sample is too small to trust.",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "sampleSize": {
+ "description": "IPOs the score is computed from.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "-100 (extreme bearish) to +100 (extreme bullish).",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "strength": {
+ "description": "weak, moderate or strong.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Latest daily reading."
+ },
+ "summary": {
+ "description": "One-line reading of level and direction.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trend": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/properties/current/anyOf/0"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Daily readings, newest first."
+ }
+ },
+ "type": "object"
+}