diff options
author | 2020-12-10 21:27:03 +0200 | |
---|---|---|
committer | 2020-12-10 21:27:03 +0200 | |
commit | 9a6a3abbc166a6136c5e678b043c7176f89ebefc (patch) | |
tree | 768dd662a164b51a93f0649bdc87b61ee38f1565 /SCHEMA.md | |
parent | Merge pull request #16 from python-discord/add-form-response-schema (diff) |
Add form name and description to SCHEMA.md
Diffstat (limited to 'SCHEMA.md')
-rw-r--r-- | SCHEMA.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -14,10 +14,11 @@ In this document: | Field | Type | Description | Example | | ----------- | ---------------------------------------- | ----------------------------------------------------------------------------------------- | --------------------------- | -| `id` | Unique identifier | A user selected, unique, descriptive identifier (used in URL routes, so no spaces) | `"ban-appeals"` | -| `features` | List of [form features](#form-features) | A list of features to change the behaviour of the form, described in the features section | `["OPEN", "COLLECT_EMAIL"]` | -| `questions` | List of [form questions](#form-question) | The list of questions to render on a specific form | Too long! See below | -| | | | | +| `id` | Unique identifier | A user selected, unique, descriptive identifier (used in URL routes, so no spaces) | `"ban-appeals"` | +| `features` | List of [form features](#form-features) | A list of features to change the behaviour of the form, described in the features section | `["OPEN", "COLLECT_EMAIL"]` | +| `questions` | List of [form questions](#form-question) | The list of questions to render on a specific form | Too long! See below | +| `name` | String | Name of the form | `"Summer Code Jam 2100"` | +| `description` | String | Form description | `"This is my amazing form description."` | ### Form features |