changedOutput schema / oneOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "found": {
- "const": false,
- "type": "boolean"
- }
- },
- "required": [
- "found"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "community_banned": {
- "type": "boolean"
- },
- "days_since_last_ban": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ]
- },
- "economy_ban": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "found": {
- "const": true,
- "type": "boolean"
- },
- "game_ban_count": {
- "type": "number"
- },
- "steamid": {
- "type": "string"
- },
- "vac_ban_count": {
- "type": "number"
- },
- "vac_banned": {
- "type": "boolean"
- }
- },
- "required": [
- "found",
- "vac_banned",
- "vac_ban_count",
- "game_ban_count",
- "community_banned",
- "economy_ban",
- "days_since_last_ban"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "found": {
+ "const": false,
+ "type": "boolean"
+ },
+ "reason": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "found",
+ "reason"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "community_banned": {
+ "type": "boolean"
+ },
+ "days_since_last_ban": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "economy_ban": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "found": {
+ "const": true,
+ "type": "boolean"
+ },
+ "game_ban_count": {
+ "type": "number"
+ },
+ "steamid": {
+ "type": "string"
+ },
+ "vac_ban_count": {
+ "type": "number"
+ },
+ "vac_banned": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "found",
+ "vac_banned",
+ "vac_ban_count",
+ "game_ban_count",
+ "community_banned",
+ "economy_ban",
+ "days_since_last_ban"
+ ],
+ "type": "object"
+ }
+]