changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "daily": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "tokens_sold": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "date",
+ "tokens_sold"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "mode": {
+ "const": "range",
+ "type": "string"
+ },
+ "period": {
+ "additionalProperties": false,
+ "properties": {
+ "date_from": {
+ "type": "string"
+ },
+ "date_to": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date_from",
+ "date_to"
+ ],
+ "type": "object"
+ },
+ "platform": {
+ "type": "string"
+ },
+ "security_kind": {
+ "const": "token",
+ "type": "string"
+ },
+ "snapshot": {
+ "additionalProperties": false,
+ "properties": {
+ "percent_rate": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "sold_pct": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "sold_total": {
+ "type": "number"
+ },
+ "status": {
+ "type": "string"
+ },
+ "token_price": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "total_tokens": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "status",
+ "token_price",
+ "percent_rate",
+ "sold_total",
+ "total_tokens",
+ "sold_pct"
+ ],
+ "type": "object"
+ },
+ "totals": {
+ "additionalProperties": false,
+ "properties": {
+ "active_days": {
+ "type": "number"
+ },
+ "avg_tokens_per_active_day": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "tokens_sold": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "tokens_sold",
+ "active_days",
+ "avg_tokens_per_active_day"
+ ],
+ "type": "object"
+ },
+ "uuid": {
+ "description": "TokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as \"78c7e502\"; despite uuid field names, it is not an RFC UUID and normally has no hyphens.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "uuid",
+ "security_kind",
+ "platform",
+ "currency",
+ "mode",
+ "period",
+ "snapshot",
+ "daily",
+ "totals"
+ ],
+ "type": "object"
+}