init: inital commit
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"age": {
|
||||
"description": "Age in years",
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"hairColor": {
|
||||
"enum": ["black", "brown", "blue"],
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": ["firstName", "lastName", "age"],
|
||||
"default": {
|
||||
"firstName": "First",
|
||||
"lastName": "Last",
|
||||
"age": 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user