我试图了解JSON
架构是什么。我理解它与JSON
有关。但它用于什么?如何创建架构?任何JSON
都可以是JSON
架构吗?
答案 0 :(得分:1)
JSON Schema描述了您的JSON数据格式,对于示例,如果是模式的json内容的一般结构,则为样本:
{
"title": "Example Schema",
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"age": {
"description": "Age in years",
"type": "integer",
"minimum": 0
}
},
"required": ["firstName", "lastName"]
}
您有一个名为title
的属性string
,您有一个名为properties
的属性,该属性是object
,具有其他属性。