Sha256: eca5737eed774c2a7d505b54ac799a5dc33d58e9c4a7bfd8806430de80161197
Contents?: true
Size: 1.14 KB
Versions: 18
Compression:
Stored size: 1.14 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "oneOf": [ { "title": "Data Table Row", "description": "Schema for a single Data Table Row", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } }, "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": [ "string", "number", "boolean", "null" ] } } }, { "type": "object", "properties": { "createdAt": { "type": "string", "format": "date-time" }, "count": { "type": "number" }, "rowIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 } }, "additionalProperties": false } ] }
Version data entries
18 entries across 18 versions & 1 rubygems