Sha256: 7419e833a4b9b501050ae55c005763eda46d8123ed2ce28643b361db8ca24841
Contents?: true
Size: 1.81 KB
Versions: 9
Compression:
Stored size: 1.81 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "solutionUserId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "solutionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "orgId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "passwordLastUpdated": { "type": "string", "format": "date-time" }, "lastLogin": { "type": "string", "format": "date-time" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "firstName": { "type": "string", "minLength": 1, "maxLength": 1024 }, "lastName": { "type": "string", "minLength": 1, "maxLength": 1024 }, "companyName": { "type": "string", "maxLength": 1024 }, "phoneNumber": { "type": "string", "maxLength": 1024 }, "location": { "type": "string", "maxLength": 1024 }, "url": { "type": "string", "maxLength": 1024 }, "forcePasswordResetOnNextLogin": { "type": "boolean" }, "fullName": { "type": "string" }, "twoFactorAuthEnabled": { "type": "boolean" }, "avatarUrl": { "type": "string", "format": "url" }, "accessRestrictions": { "type": "object", "properties": { "dashboardIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } } } }
Version data entries
9 entries across 9 versions & 1 rubygems