24 lines
461 B
JSON
24 lines
461 B
JSON
{
|
|
"title": "Enter Information About Viking",
|
|
"description": "A simple example of using Service Tasks to work with DynamoDB",
|
|
"type": "object",
|
|
"required": [
|
|
"Name",
|
|
"BirthDate"
|
|
],
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string",
|
|
"title": "Name",
|
|
"default": "Erik"
|
|
},
|
|
"BirthDate": {
|
|
"type": "string",
|
|
"title": "Birth Date",
|
|
"format": "date"
|
|
},
|
|
"Details": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
} |