changedOutput schema / properties / results / items / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "currency": {
- "enum": [
- "usd",
- "eur",
- "rub"
- ],
- "type": "string"
- },
- "rate": {
- "type": "number"
- },
- "rate_date": {
- "type": "string"
- }
- },
- "required": [
- "currency",
- "rate_date",
- "rate"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "avg_rate": {
- "type": "number"
- },
- "currency": {
- "enum": [
- "usd",
- "eur",
- "rub"
- ],
- "type": "string"
- },
- "data_points": {
- "type": "number"
- },
- "expected_data_points": {
- "type": "number"
- },
- "is_complete": {
- "type": "boolean"
- },
- "max_rate": {
- "type": "number"
- },
- "min_rate": {
- "type": "number"
- },
- "period_start": {
- "type": "string"
- },
- "period_type": {
- "enum": [
- "week",
- "month"
- ],
- "type": "string"
- },
- "stddev_rate": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "required": [
- "currency",
- "period_type",
- "period_start",
- "avg_rate",
- "min_rate",
- "max_rate",
- "stddev_rate",
- "data_points",
- "expected_data_points",
- "is_complete"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "currency": {
+ "enum": [
+ "usd",
+ "eur",
+ "rub"
+ ],
+ "type": "string"
+ },
+ "rate": {
+ "type": "number"
+ },
+ "rate_date": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "currency",
+ "rate_date",
+ "rate"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "avg_rate": {
+ "type": "number"
+ },
+ "currency": {
+ "enum": [
+ "usd",
+ "eur",
+ "rub"
+ ],
+ "type": "string"
+ },
+ "data_points": {
+ "type": "number"
+ },
+ "expected_data_points": {
+ "type": "number"
+ },
+ "is_complete": {
+ "type": "boolean"
+ },
+ "max_rate": {
+ "type": "number"
+ },
+ "min_rate": {
+ "type": "number"
+ },
+ "period_start": {
+ "type": "string"
+ },
+ "period_type": {
+ "enum": [
+ "week",
+ "month"
+ ],
+ "type": "string"
+ },
+ "stddev_rate": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "currency",
+ "period_type",
+ "period_start",
+ "avg_rate",
+ "min_rate",
+ "max_rate",
+ "stddev_rate",
+ "data_points",
+ "expected_data_points",
+ "is_complete"
+ ],
+ "type": "object"
+ }
+]