Sha256: 75fdd376bc6bac26700fd13fab07443252a2da67e95414f2763ab52951fa0580
Contents?: true
Size: 1.61 KB
Versions: 16
Compression:
Stored size: 1.61 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "experienceVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "createdById": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "createdByType": { "type": "string", "enum": [ "flow", "user", "apiToken" ] }, "lastUpdated": { "type": "string", "format": "date-time" }, "endpointDefaultCors": { "type": "boolean" }, "version": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "attachedDomains": { "type": "array", "items": { "type": "object", "properties": { "domainName": { "type": "string", "maxLength": 1024, "minLength": 3 }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } }, "attachedSlugs": { "type": "array", "items": { "type": "object", "properties": { "slug": { "type": "string" }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } } } }
Version data entries
16 entries across 16 versions & 1 rubygems