Sha256: 54d0d277bd52fba11351f2d8d4939b033edfd449f0c8735ed4303ddd572c586c
Contents?: true
Size: 790 Bytes
Versions: 9
Compression:
Stored size: 790 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "planId": { "type": "string", "maxLength": 1024 }, "billingEmail": { "type": "string", "format": "email", "maxLength": 1024 }, "cardToken": { "type": "string", "maxLength": 1024 }, "iconColor": { "type": "string", "maxLength": 64 }, "mfaMode": { "type": "string", "enum": [ "notRequired", "adminRequired", "required" ] } }, "additionalProperties": false, "required": [ "name" ] }
Version data entries
9 entries across 9 versions & 1 rubygems