diff --git a/playground/dan/dans-first-progress-model/example-schema.json b/playground/dan/dans-first-progress-model/example-schema.json index 9e26dfee..14528a4e 100644 --- a/playground/dan/dans-first-progress-model/example-schema.json +++ b/playground/dan/dans-first-progress-model/example-schema.json @@ -1 +1,15 @@ -{} \ No newline at end of file +{ + "title": "Text Field", + "description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')", + "type": "object", + "required": [ + "firstName" + ], + "properties": { + "firstName": { + "type": "string", + "title": "First name", + "default": "Chuck" + } + } +} \ No newline at end of file