changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "ageDays": {
+ "description": "Days since the reading. Readings are taken before listing and not refreshed.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "analyzedAt": {
+ "description": "ISO timestamp of the reading.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "company": {
+ "description": "Registrant name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "label": {
+ "description": "Bullish, Neutral or Bearish.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "negativeHits": {
+ "description": "Posts scored negative.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "positiveHits": {
+ "description": "Posts scored positive.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "postCount": {
+ "description": "Posts the reading is based on.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "reliable": {
+ "description": "False when too few posts back the reading.",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "-1 (bearish) to +1 (bullish).",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "summary": {
+ "description": "One-line summary.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Ticker.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbolNote": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Present only when the requested ticker is contested: which registrant it belongs to now vs. the record served."
+ }
+ },
+ "type": "object"
+}