Sha256: 04f96e870e970d42891a5602a4dbbe7daf2bd2b387b08c3a8c3f14821c2477ef
Contents?: true
Size: 998 Bytes
Versions: 35
Compression:
Stored size: 998 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "slug": { "type": "string", "pattern": "^[0-9a-z_-]{1,255}$" }, "allowSelfDeletion": { "type": "boolean" }, "allowSelfEmailChange": { "type": "boolean" }, "passwordReset": { "type": "object", "properties": { "allowPasswordReset": { "type": "boolean" }, "emailSubject": { "type": "string", "maxLength": 255 }, "emailBody": { "type": "string", "maxLength": 32767 }, "emailFrom": { "type": "string", "format": "email", "maxLength": 1024 } }, "additionalProperties": false }, "additionalProperties": false } }
Version data entries
35 entries across 35 versions & 1 rubygems