Sha256: 51c90bb3812b7f4b63345bc22c433f6f6d3e220e402c74cabee2474a05f1bbe0
Contents?: true
Size: 1.39 KB
Versions: 4
Compression:
Stored size: 1.39 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "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" ] } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "sortColumn": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "dataTableId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
losant_rest-1.9.2 | schemas/dataTableRows.json |
losant_rest-1.9.1 | schemas/dataTableRows.json |
losant_rest-1.9.0 | schemas/dataTableRows.json |
losant_rest-1.8.9 | schemas/dataTableRows.json |