From 348b87f64dd066b111bfac64a92d9f7206584e62 Mon Sep 17 00:00:00 2001 From: spiral Date: Tue, 3 Aug 2021 20:06:08 -0400 Subject: [PATCH] docs: name is not nullable in API models --- docs/content/api-documentation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/api-documentation.md b/docs/content/api-documentation.md index 1c59802b..e47d35d4 100644 --- a/docs/content/api-documentation.md +++ b/docs/content/api-documentation.md @@ -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. |