docs: name is not nullable in API models

This commit is contained in:
spiral 2021-08-03 20:06:08 -04:00
parent 34a1470d1f
commit 348b87f64d
No known key found for this signature in database
GPG Key ID: A6059F0CA0E1BD31

View File

@ -51,7 +51,7 @@ The following three models (usually represented in JSON format) represent the va
| Key | Type | Patchable? | Notes |
| --------------------- | -------- | ---------- | ----------------------------------------------------------------------------------------- |
| id | string | No | |
| name | string? | Yes | 100-character limit. |
| name | string | Yes | 100-character limit. |
| description | string? | Yes | 1000-character limit. |
| tag | string? | Yes | |
| avatar_url | url? | Yes | Not validated server-side. |
@ -68,7 +68,7 @@ The following three models (usually represented in JSON format) represent the va
| Key | Type | Patchable? | Notes |
| ------------------- | ---------- | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| id | string | No | |
| name | string? | Yes | 50-character limit. |
| name | string | Yes | 50-character limit. |
| display_name | string? | Yes | 50-character limit. |
| description | string? | Yes | 1000-character limit. |
| pronouns | string? | Yes | 100-character limit. |