From 73f43b8cb380060365c940a38ec971589863fe35 Mon Sep 17 00:00:00 2001 From: alyssa Date: Fri, 3 May 2024 01:18:15 +0900 Subject: [PATCH] feat(docs): document 'system' key in member/group models --- docs/content/api/models.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/content/api/models.md b/docs/content/api/models.md index 428528ac..26e0ea7c 100644 --- a/docs/content/api/models.md +++ b/docs/content/api/models.md @@ -40,6 +40,7 @@ Every PluralKit entity has two IDs: a short (5-character) ID and a longer UUID. |---|---|---| |id|string|| |uuid|string|| +|?system|string|id of system this member is registered in (only returned in `/members/:id` endpoint)| |name|string|100-character limit| |display_name|?string|100-character limit| |color|?string|6-character hex code, no `#` at the beginning| @@ -75,6 +76,7 @@ Every PluralKit entity has two IDs: a short (5-character) ID and a longer UUID. |---|---|---| |id|string|| |uuid|string|| +|?system|string|id of system this group is registered in (only returned in `/groups/:id` endpoint)| |name|string|100-character limit| |display_name|?string|100-character limit| |description|?string|1000-character limit|