chore: Add new schemas (no-changelog) (#13215)

This commit is contained in:
Jon
2025-02-13 09:40:35 +00:00
committed by GitHub
parent f001edb2a2
commit 0c6eb6eaef
38 changed files with 3095 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
{
"type": "object",
"properties": {
"object": {
"type": "string"
},
"id": {
"type": "string"
},
"userId": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"twoFactorEnabled": {
"type": "boolean"
},
"status": {
"type": "integer"
},
"collections": {
"type": "null"
},
"resetPasswordEnrolled": {
"type": "boolean"
},
"ssoExternalId": {
"type": "null"
},
"type": {
"type": "integer"
},
"permissions": {
"type": "null"
}
},
"required": [
"object",
"id",
"userId",
"name",
"email",
"twoFactorEnabled",
"status",
"collections",
"resetPasswordEnrolled",
"type",
"externalId",
"permissions"
]
}