0
への参照を持っている場合は、POJOにjsonSchemaを変換する私は介してオンラインのPOJOにjsonSchemaを変換したい: http://www.jsonschema2pojo.org/ しかし、それはエラーを与える:絶対URIが見つかりません。 これを処理するオンラインコンバータはありますか?jsonSchemaプロパティは、他のjsonSchemas
For example my jsonschema is:
A.json
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "A",
"type": "object",
"description": "About A",
"properties": {
"property1": {
"description": "First property",
"$ref": "B.json"
}
}
}
where B.json :
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "B",
"type": "object",
"properties": {
"name": {
"description": "The username",
"type": "string",
"minLength": 1
}
}
}