test user model

master
Vyacheslav Boyko 2022-08-11 15:12:20 +03:00
commit 7c810c6c36
2 changed files with 12 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
.project
.settings/

10
app1/user.avsc 100644
View File

@ -0,0 +1,10 @@
{
"namespace": "me.bvn13.test.avro.schema",
"type": "record",
"name": "User",
"fields": [
{"name": "name", "type": "string"},
{"name": "favorite_number", "type": ["int", "null"]},
{"name": "favorite_color", "type": ["string", "null"]}
]
}