Sha256: 69997d18a860d0f19d155e3ff044648710cb5210b45d4b1b7b0d7d3814675ed6
Contents?: true
Size: 696 Bytes
Versions: 14
Compression:
Stored size: 696 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "toEmail" ], "properties": { "toEmail": { "type": "array", "min": 1, "max": 10, "items": { "type": "string", "format": "email", "maxLength": 1024 } }, "subject": { "type": "string", "max": 255 }, "message": { "type": "string", "max": 32767 }, "theme": { "type": "string", "enum": [ "dark", "light" ] }, "time": { "type": "number" }, "timezone": { "type": "string", "max": 255 } }, "additionalProperties": false }
Version data entries
14 entries across 14 versions & 1 rubygems