2017-01-24 9 views

答えて

1

を達成することができるようにJSONスキーマの構文を書きヘルプ -

{ 
    "type" : "object", 
    "required" : [ "answers" ], 
    "properties" : { 
    "answers" : { 
     "type" : "object", 
     "additionalProperties": { "type": "string" } 
    } 
    }, 
    "title" : "test" 
} 

地図利用の地図を作成するために:

"answers": { 
     "type" :"object", 
     "additionalProperties" : 
      { "type" : "object", 
       "additionalProperties" : {"type" : "string"} 
      } 
} 
関連する問題