2

JSONスキーマからキーと値のペアを使用してオブジェクトを定義しようとしており、Json Schema Validatorで検証していますが、調べたすべてのJSONスキーマサイトでそうするように指示されていないように見えるため、喜びがありません.

私のオブジェクトスキーマ定義は次のとおりです。

                "gum guards" : {
                    "type": "object",

                        "properties": {
                        "Color":      { "type": "string" },
                        "product code": { "type": "string" },
                        "color code": { "type": "string"}
                     },
                    "enum" : ["Color", "product code", "color code"]
                }

結果の JSON ファイルには、次のような値が表示されます。

"gum guards" : [
    { "Color" : "Black", "product code" : "gg-7890", "color code" : "#000000" },
    { "Color" : "White", "product code" : "gg-7891", "color code" : "#ffffff" }
]

ただし、バリデーターから次のエラーメッセージが表示されます。

[ {
  "level" : "error",
  "schema" : {
   "loadingURI" : "#",
   "pointer" : ""
 },
  "instance" : {
   "pointer" : ""
  },
  "domain" : "validation",
  "keyword" : "type",
  "message" : "instance type (object) does not match any allowed primitive type (allowed:          [\"array\"])",
   "found" : "object",
    "expected" : [ "array" ]
    } ]

JSONスキーマでキーと値/ペアを含む配列をどのように定義しますか?

スキーマ:

 {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "List of products",
"type": "array",

    "items": {
        "title": "Product",
        "type": "object",
            "properties": {
                "id": {
                    "description": "The unique identifier for a product",
                    "type": "number"
                },
                "Category" : {
                    "type": "string"
                },
                "Product Name" : {
                    "type" : "string"
                },

                "gum guards" : {
                    "type": "array",

                        "items": {
                           "Color": { "type": "string" },
                           "product code": { "type": "string" },
                           "color code": { "type": "string"}
                         },
                    "required" : ["Color", "product code", "color code"]
                },
                "Summary" : {
                "type": "object",
                    "properties": {
                        "Description": {
                            "oneOf": [
                                {"$ref" : "json/product_summary.json#1110/description"},
                                {"$ref" : "json/product_summary.json#1111/description"},
                                {"$ref" : "json/product_summary.json#1112/description"},
                                {"$ref" : "json/product_summary.json#1114/description"},
                            ]
                        }
                    }
                }


            }






    }

出力:

 {
"id" : 1110,
"Device Type" : "handset",
"Product Name" : "Pack of accessories",
"variants" : [
    { "Color" : "Black", "product code" : "gg-09090", "color code" : "#000000" },
    { "Color" : "White", "product code" : "gg-09091", "color code" : "#ffffff" }
],
"Summary" : {

    "description" : "Pack of fighter products with chosen colour guard"
}

}

4

1 に答える 1