diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-31 17:25:28 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-31 17:51:57 +1100 |
commit | 0fe03771ce2a03915c266a0d4d34f2c11b229123 (patch) | |
tree | 54d54db84fc0ebd6c992b13dbd36ddb05b009eb4 /assets | |
parent | Merge branch 'maddy/refactor' into maddy/bodyParserPatch (diff) | |
download | server-0fe03771ce2a03915c266a0d4d34f2c11b229123.tar.xz |
Profile themes and pronouns
Diffstat (limited to 'assets')
-rw-r--r-- | assets/schemas.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/assets/schemas.json b/assets/schemas.json index 879d202e..40599f06 100644 --- a/assets/schemas.json +++ b/assets/schemas.json @@ -12064,6 +12064,22 @@ }, "bio": { "type": "string" + }, + "pronouns": { + "type": "string" + }, + "theme_colors": { + "type": "array", + "items": [ + { + "type": "integer" + }, + { + "type": "integer" + } + ], + "minItems": 2, + "maxItems": 2 } }, "additionalProperties": false, @@ -19567,6 +19583,22 @@ "null", "string" ] + }, + "pronouns": { + "type": "string" + }, + "theme_colors": { + "type": "array", + "items": [ + { + "type": "integer" + }, + { + "type": "integer" + } + ], + "minItems": 2, + "maxItems": 2 } }, "additionalProperties": false, |