JAVA-12729: rename jackson module

This commit is contained in:
sampadawagde
2022-07-29 19:32:11 +05:30
parent 33c18f2cd5
commit 5c8d615fdb
53 changed files with 4 additions and 4 deletions
@@ -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
}
]
}