Skip to content

Instantly share code, notes, and snippets.

@rzymek
Last active December 23, 2020 14:15
Show Gist options
  • Save rzymek/57949ba68bce90d65f7e318f9e239a1f to your computer and use it in GitHub Desktop.
Save rzymek/57949ba68bce90d65f7e318f9e239a1f to your computer and use it in GitHub Desktop.
"User": {
"type": "object",
"required": ["email", "roles"],
"properties": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string",
"description": "User's surname"
},
"roles": {
"type": "array",
"items": {
"type": "string",
"enum": ["USER","ADMIN"]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment