Sha256: 7a676639e23cf1c91e9e4ef7e11e73a3596b0b5a5372a3dc0ff615b50bd35b54
Contents?: true
Size: 1.04 KB
Versions: 17
Compression:
Stored size: 1.04 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "csv": { "type": "string" }, "count": { "type": "integer" }, "nameColumn": { "type": "string", "maxLength": 255 }, "descriptionColumn": { "type": "string", "maxLength": 255 }, "gatewayIdColumn": { "type": "string", "maxLength": 255 }, "parentIdColumn": { "type": "string", "maxLength": 255 }, "makeUniqueKeySecret": { "type": "boolean" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "callbackUrl": { "type": "string", "format": "uri", "maxLength": 1024 }, "gatewayId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "parentId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "null" } ] } }, "additionalProperties": false }
Version data entries
17 entries across 17 versions & 1 rubygems