Оценка схемы файла JSON с использованием json-schema-validator - PullRequest
0 голосов
/ 31 декабря 2018

У меня есть пример файла JSON, и я также придумал схему для оценки вышеуказанного файла, используя приведенный ниже файл JSON:

//[gcp_ingestion_parameters_schema.json]
{
...
    "properties": {
        "application": {
            "$ref": "#/definitions/application"
        },
        "ingestion": {
            "$ref": "#/definitions/ingestion"
        }
    },
    "definitions": {
        "applicaion": {
            "type": "object",
            "properties": {
                "project_id": {
                    "type": "string"
                },
                "path_to_json_key_file": {
                    "type": "string"
                }
            },
            "required": [
                "project_id",
                "path_to_json_key_file"
            ]
    },
 ...

Я все еще не уверен, как написать файл схемы.В моем примере файла теги приложения и загрузки должны встречаться по одному разу, но сопоставления fileingestion внутри загрузки могут происходить один или несколько раз.

Я написал некоторый Java-код для оценки моего файла JSON (первый файл) на основепредоставленный файл схемы JSON.

, но я получаю исключение следующим образом: Исключение в теме "main"

com.github.fge.jsonschema.core.exceptions.ProcessingException: fatal: JSON Reference "#/definitions/appl
ication" cannot be resolved
    level: "fatal"
    schema: {"loadingURI":"#","pointer":"/properties/application"}
    ref: "#/definitions/application"

Могут ли некоторые с опытом работы с библиотекой выше ответить на мои вопросы, заданные в этом шаге?

Ответы [ 2 ]

0 голосов
/ 31 декабря 2018

Как предполагается, у вас есть опечатка в вашей схеме, она должна быть ниже

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://json-schema.org/draft-07/schema#",
    "title": "Core schema meta-schema",
    "definitions": {
        "schemaArray": {
            "type": "array",
            "minItems": 1,
            "items": { "$ref": "#" }
        },
        "nonNegativeInteger": {
            "type": "integer",
            "minimum": 0
        },
        "nonNegativeIntegerDefault0": {
            "allOf": [
                { "$ref": "#/definitions/nonNegativeInteger" },
                { "default": 0 }
            ]
        },
        "simpleTypes": {
            "enum": [
                "array",
                "boolean",
                "integer",
                "null",
                "number",
                "object",
                "string"
            ]
        },
        "stringArray": {
            "type": "array",
            "items": { "type": "string" },
            "uniqueItems": true,
            "default": []
        }
    },
    "type": ["object", "boolean"],
    "properties": {
        "$id": {
            "type": "string",
            "format": "uri-reference"
        },
        "$schema": {
            "type": "string",
            "format": "uri"
        },
        "$ref": {
            "type": "string",
            "format": "uri-reference"
        },
        "$comment": {
            "type": "string"
        },
        "title": {
            "type": "string"
        },
        "description": {
            "type": "string"
        },
        "default": true,
        "readOnly": {
            "type": "boolean",
            "default": false
        },
        "examples": {
            "type": "array",
            "items": true
        },
        "multipleOf": {
            "type": "number",
            "exclusiveMinimum": 0
        },
        "maximum": {
            "type": "number"
        },
        "exclusiveMaximum": {
            "type": "number"
        },
        "minimum": {
            "type": "number"
        },
        "exclusiveMinimum": {
            "type": "number"
        },
        "maxLength": { "$ref": "#/definitions/nonNegativeInteger" },
        "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
        "pattern": {
            "type": "string",
            "format": "regex"
        },
        "additionalItems": { "$ref": "#" },
        "items": {
            "anyOf": [
                { "$ref": "#" },
                { "$ref": "#/definitions/schemaArray" }
            ],
            "default": true
        },
        "maxItems": { "$ref": "#/definitions/nonNegativeInteger" },
        "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
        "uniqueItems": {
            "type": "boolean",
            "default": false
        },
        "contains": { "$ref": "#" },
        "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" },
        "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
        "required": { "$ref": "#/definitions/stringArray" },
        "additionalProperties": { "$ref": "#" },
        "definitions": {
            "type": "object",
            "additionalProperties": { "$ref": "#" },
            "default": {}
        },
        "properties": {
            "type": "object",
            "additionalProperties": { "$ref": "#" },
            "default": {}
        },
        "patternProperties": {
            "type": "object",
            "additionalProperties": { "$ref": "#" },
            "propertyNames": { "format": "regex" },
            "default": {}
        },
        "dependencies": {
            "type": "object",
            "additionalProperties": {
                "anyOf": [
                    { "$ref": "#" },
                    { "$ref": "#/definitions/stringArray" }
                ]
            }
        },
        "propertyNames": { "$ref": "#" },
        "const": true,
        "enum": {
            "type": "array",
            "items": true,
            "minItems": 1,
            "uniqueItems": true
        },
        "type": {
            "anyOf": [
                { "$ref": "#/definitions/simpleTypes" },
                {
                    "type": "array",
                    "items": { "$ref": "#/definitions/simpleTypes" },
                    "minItems": 1,
                    "uniqueItems": true
                }
            ]
        },
        "format": { "type": "string" },
        "contentMediaType": { "type": "string" },
        "contentEncoding": { "type": "string" },
        "if": {"$ref": "#"},
        "then": {"$ref": "#"},
        "else": {"$ref": "#"},
        "allOf": { "$ref": "#/definitions/schemaArray" },
        "anyOf": { "$ref": "#/definitions/schemaArray" },
        "oneOf": { "$ref": "#/definitions/schemaArray" },
        "not": { "$ref": "#" }
    },
    "default": true
} 

Это прекрасно работает с предоставленным вами JSON.

0 голосов
/ 31 декабря 2018

У вас есть ошибка опечатки в applicaion, это должно быть application

Измените "definitions": { "applicaion": { на "definitions": { "application": {

. Также см. Эту ссылку для проверки вашей схемы https://www.liquid -technologies.com / онлайн-JSON-схема-валидатор .

...