...
The root of your schema must always have "type": "object"
. Then, under the properties
section is where you start to configure the actual properties of your schema. Here is an example of a section that you could put under properties
:
Code Block |
---|
"brief": {
"description": "A brief description of the project described in the proposal",
"multiline": true,
"rows": 4,
"show_in_table_view": true,
"table_view_order": 3,
"title": "Brief",
"type": "string"
}, |