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

Version Path
losant_rest-1.21.0 schemas/dataTableRowInsertResult.json
losant_rest-1.20.1 schemas/dataTableRowInsertResult.json
losant_rest-1.20.0 schemas/dataTableRowInsertResult.json
losant_rest-1.19.9 schemas/dataTableRowInsertResult.json
losant_rest-1.19.8 schemas/dataTableRowInsertResult.json
losant_rest-1.19.6 schemas/dataTableRowInsertResult.json
losant_rest-1.19.4 schemas/dataTableRowInsertResult.json
losant_rest-1.19.3 schemas/dataTableRowInsertResult.json
losant_rest-1.19.2 schemas/dataTableRowInsertResult.json
losant_rest-1.19.1 schemas/dataTableRowInsertResult.json
losant_rest-1.19.0 schemas/dataTableRowInsertResult.json
losant_rest-1.18.0 schemas/dataTableRowInsertResult.json
losant_rest-1.17.5 schemas/dataTableRowInsertResult.json
losant_rest-1.17.4 schemas/dataTableRowInsertResult.json
losant_rest-1.17.3 schemas/dataTableRowInsertResult.json
losant_rest-1.17.2 schemas/dataTableRowInsertResult.json
losant_rest-1.17.1 schemas/dataTableRowInsertResult.json
losant_rest-1.17.0 schemas/dataTableRowInsertResult.json