* Fixed checkstyle by running the "./gradlew --no-daemon format --scan". NO changes in logic
30 lines
505 B
JSON
30 lines
505 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"first_name": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"email_address": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"state": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"created_at": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"fields": {
|
|
"type": ["object", "null"],
|
|
"properties": {
|
|
"last_name": {
|
|
"type": ["string", "null"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": ["id"]
|
|
}
|