Sha256: 01bcde0776289c60fcd32d59429e26a5f5c756d5985cd1c62106d5dccb9e699c
Contents?: true
Size: 1.67 KB
Versions: 19
Compression:
Stored size: 1.67 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationCertificateAuthorityId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "caBundle": { "type": "string", "maxLength": 32767, "minLength": 50 }, "caInfo": { "type": "array", "items": { "type": "object", "properties": { "serialNumber": { "type": "string", "minLength": 1, "maxLength": 1024 }, "fingerprint": { "type": "string", "minLength": 1, "maxLength": 1024 }, "commonName": { "type": "string", "maxLength": 1024 }, "issuerName": { "type": "string", "maxLength": 1024 }, "notValidBefore": { "type": "string", "format": "date-time" }, "notValidAfter": { "type": "string", "format": "date-time" } } } } } }
Version data entries
19 entries across 19 versions & 1 rubygems