1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "GameAuthorizationResponse", "type": "object", "title": "Game Authorization Response", "description": "Game Authorization Response", "default": {}, "additionalProperties": true, "required": [], "properties": { "AuthResult": { "$id": "#/properties/AuthResult", "type": "string", "title": "The Authentication Result", "description": "Authentication Success / Unsuccessful ", "default": "", "examples": [ "Authentication Success!" ] }, "ErrorCode": { "$id": "#/properties/ErrorCode", "type": "string", "title": "The Error Code ", "description": "Error Code in case of error", "default": "", "examples": [ "415071" ] } } } |