JAVA-12729: rename jackson module
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"title": "Author",
|
||||
"description": "An author",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"items",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": {
|
||||
"first": "Tatu",
|
||||
"last": "Saloranta"
|
||||
},
|
||||
"title": "Jackson founder",
|
||||
"company": "FasterXML",
|
||||
"pets": [
|
||||
{
|
||||
"type": "dog",
|
||||
"number": 1
|
||||
},
|
||||
{
|
||||
"type": "fish",
|
||||
"number": 50
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user