4

当使用 JSON.Net JsonSchemaGenerator 为我的对象生成 JSON Schema 时:

Public Class Host
    Public Property uid() As String
End Class

它将 type 属性生成为字符串数组:

{
    "type": "object",
    "properties": {
        "uid": {
            "required": true,
            "type": [
                "string",
                "null"
            ]
        }
    }
}

正确的 JSON Schema 应该是:

{
    "type": "object",
    "properties": {
        "uid": {
            "required": true,
            "type": "string"
        }
    }
}

有没有人见过这个?

4

1 回答 1

4

它不是一个字符串数组,它是一个可以为空的字符串

{ "type": [ "string", "null" ] }表示值是字符串或空值。字符串数组将是{ "type": "array", "items": { "type": "string" } }

于 2013-07-16T08:31:20.627 回答