Sha256: 1e19cc18815b2b287a2a61a3118c5e5ead883fb410a8e4d8f0e21d5ec662619a
Contents?: true
Size: 1.28 KB
Versions: 12
Compression:
Stored size: 1.28 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": { "type": "object", "properties": { "title": "Organization Invitation Information For User", "description": "Schema for information about an invitation", "type": "object", "properties": { "orgName": { "type": "string", "minLength": 1, "maxLength": 255 }, "role": { "type": "string", "enum": [ "admin", "edit", "collaborate", "view", "none" ] }, "requiresMFA": { "type": "boolean" }, "inviteDate": { "type": "string", "format": "date-time" }, "ttl": { "type": "number" }, "expired": { "type": "boolean" }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "invitedBy": { "type": "object", "properties": { "fullName": { "type": "string" }, "email": { "type": "string", "format": "email", "maxLength": 1024 } } } } } } }
Version data entries
12 entries across 12 versions & 1 rubygems