Sha256: 7617fb8f617fd12970031d03e49f9a8b3fa7eb2f9b483f5292824a037d1349d4
Contents?: true
Size: 1.03 KB
Versions: 35
Compression:
Stored size: 1.03 KB
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 }, "required": [ "name", "slug" ], "additionalProperties": false } }
Version data entries
35 entries across 35 versions & 1 rubygems