removedOutput schema / anyOf
Removed value: -[
- {
- "additionalProperties": false,
- "properties": {
- "found": {
- "const": false,
- "type": "boolean"
- },
- "reason": {
- "type": "string"
- }
- },
- "required": [
- "found",
- "reason"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "found": {
- "const": true,
- "type": "boolean"
- },
- "friends": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "friends_since": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "in_game": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "profile_url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "state": {
- "type": "string"
- },
- "steamid": {
- "type": "string"
- }
- },
- "required": [
- "name",
- "state",
- "in_game",
- "profile_url",
- "friends_since"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "returned": {
- "type": "number"
- },
- "total": {
- "type": "number"
- }
- },
- "required": [
- "found",
- "total",
- "returned",
- "friends"
- ],
- "type": "object"
- }
-]
addedOutput schema / oneOf
Added value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "found": {
+ "const": false,
+ "type": "boolean"
+ },
+ "reason": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "found",
+ "reason"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "found": {
+ "const": true,
+ "type": "boolean"
+ },
+ "friends": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "friends_since": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "in_game": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "profile_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "state": {
+ "enum": [
+ "offline",
+ "online",
+ "busy",
+ "away",
+ "snooze",
+ "looking to trade",
+ "looking to play"
+ ],
+ "type": "string"
+ },
+ "steamid": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "state",
+ "in_game",
+ "profile_url",
+ "friends_since"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "type": "number"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "found",
+ "total",
+ "returned",
+ "friends"
+ ],
+ "type": "object"
+ }
+]