Sha256: 5500271fd855eee4839e5b26d3f2694ef14c012b3c80b31baf9a70de26f611fd
Contents?: true
Size: 1.57 KB
Versions: 27
Compression:
Stored size: 1.57 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "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" }, "authorId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "authorType": { "type": "string", "enum": [ "flow", "user", "device", "apiToken", "notebook" ] }, "status": { "type": "string", "enum": [ "pending", "moving", "deleting", "completed" ] }, "name": { "type": "string", "minLength": 1, "maxLength": 1024 }, "parentDirectory": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "file", "directory" ] }, "fileSize": { "type": "number" }, "s3etag": { "type": "string" }, "contentType": { "type": "string", "maxLength": 1024 }, "fileDimensions": { "type": "object", "properties": { "width": { "type": "number" }, "height": { "type": "number" } } }, "moveIntoId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "url": { "type": "string" } } }
Version data entries
27 entries across 27 versions & 1 rubygems