Я получаю несколько ошибок при проверке JSON. Я не в состоянии понять ошибки, может кто-нибудь помочь и объяснить немного.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Modified JSON Schema draft v4 that includes the optional '$ref' and 'format'",
"definitions": {
"schemaArray": {
"type": "array",
"minItems": 1,
"items": { "$ref": "#" }
},
"positiveInteger": {
"type": "integer",
"minimum": 0
},
"positiveIntegerDefault0": {
"allOf": [ { "$ref": "#/definitions/positiveInteger" }, { "default": 0 } ]
},
"simpleTypes": {
"enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ]
},
"stringArray": {
"type": "array",
"items": { "type": "string" },
"minItems": 1,
"uniqueItems": true
}
},
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uri"
},
"$schema": {
"type": "string",
"format": "uri"
},
"$ref": {
"type": "string"
},
"format": {
"type": "string"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"default": { },
"multipleOf": {
"type": "number",
"minimum": 0,
"exclusiveMinimum": true
},
"maximum": {
"type": "number"
},
"exclusiveMaximum": {
"type": "boolean",
"default": false
},
"minimum": {
"type": "number"
},
"exclusiveMinimum": {
"type": "boolean",
"default": false
},
"maxLength": { "$ref": "#/definitions/positiveInteger" },
"minLength": { "$ref": "#/definitions/positiveIntegerDefault0" },
"pattern": {
"type": "string",
"format": "regex"
},
"additionalItems": {
"anyOf": [
{ "type": "boolean" },
{ "$ref": "#" }
],
"default": { }
},
"items": {
"anyOf": [
{ "$ref": "#" },
{ "$ref": "#/definitions/schemaArray" }
],
"default": { }
},
"maxItems": { "$ref": "#/definitions/positiveInteger" },
"minItems": { "$ref": "#/definitions/positiveIntegerDefault0" },
"uniqueItems": {
"type": "boolean",
"default": false
},
"maxProperties": { "$ref": "#/definitions/positiveInteger" },
"minProperties": { "$ref": "#/definitions/positiveIntegerDefault0" },
"required": { "$ref": "#/definitions/stringArray" },
"additionalProperties": {
"anyOf": [
{ "type": "boolean" },
{ "$ref": "#" }
],
"default": { }
},
"definitions": {
"type": "object",
"additionalProperties": { "$ref": "#" },
"default": { }
},
"properties": {
"type": "object",
"additionalProperties": { "$ref": "#" },
"default": { }
},
"patternProperties": {
"type": "object",
"additionalProperties": { "$ref": "#" },
"default": { }
},
"dependencies": {
"type": "object",
"additionalProperties": {
"anyOf": [
{ "$ref": "#" },
{ "$ref": "#/definitions/stringArray" }
]
}
},
"enum": {
"type": "array",
"minItems": 1,
"uniqueItems": true
},
"type": {
"anyOf": [
{ "$ref": "#/definitions/simpleTypes" },
{
"type": "array",
"items": { "$ref": "#/definitions/simpleTypes" },
"minItems": 1,
"uniqueItems": true
}
]
},
"allOf": { "$ref": "#/definitions/schemaArray" },
"anyOf": { "$ref": "#/definitions/schemaArray" },
"oneOf": { "$ref": "#/definitions/schemaArray" },
"not": { "$ref": "#" }
},
"dependencies": {
"exclusiveMaximum": [ "maximum" ],
"exclusiveMinimum": [ "minimum" ]
},
"default": { }
}
А вот и JSON.
{
"type": "identification.carrier",
"id": "uui#abb0ef56-8562-4056-aa62-afb758a150ad",
"happened": "2018-03-28T10:52:44.35+02:00",
"processed": "2018-03-28T10:52:44.35+02:00",
"tracking_id": "tid#ad2ebdb1-5d5b-4dcb-a058-494b6af89127",
"source_attributes": {
"id": "idsadm@app44A0",
"data": {
"info": "resumeIdentify: result: carrier has operator and mobile network",
"callId": "ad2ebdb1-5d5b-4dcb-a058-494b6af89127",
"contextId": "0aeb6745-a43c-4257-a535-6905d21a5297",
"ids_state": "SUCCESS",
"ids_strategy_type": "REDIRECT_MULTI_WITH_MSISDN_IN_HEADER",
"ids_identity_type": "MSISDN",
"country": "DE",
"ids_result_type": "IDENTITY",
"ids_result_network": "MobileNetwork[MOBILE=Vodafone D2 GmbH,operator=Operator[ref=10013,MNO=VODAFONE,countryIsoName=DE],countryIsoName=DE,ref=64,mnc=2,mcc=262,mvnos=[Operator[ref=30,MVNO=MOBILCOM-DEBITEL,countryIsoName=DE]]",
"idsServiceLine": "599 387 240"
}
},
"event_data": {
"service": {
"name": "IdsService",
"version": "4.1"
},
"result": {
"country": "DE",
"mno": "VODAFONE",
"mvno": "MOBILCOM-DEBITEL",
"mcc": "262",
"mnc": "2"
}
}
}
Сообщение:
JSON не соответствует ни одной схеме из 'anyOf'.
Путь к схеме:
/ свойства / тип / anyOf
Сообщение:
Неверный тип. Ожидаемый массив, но получил строку.
Путь к схеме:
/ свойства / тип / anyOf / 1 / тип
Сообщение:
Значение «идентификации. Носителя» в перечислении не определено
Путь к схеме:
/ Определения / simpleTypes / перечисление
Сообщение:
Строка 'uui # abb0ef56-8562-4056-aa62-afb758a150ad' не проверяется на соответствие формату 'uri'.
Путь к схеме:
/ свойства / идентификатор / формат