Sha256: 34988d7a9eca804521648cc40d37b67a9ba834f0d102aec3df91725519f4cb50

Contents?: true

Size: 1.44 KB

Versions: 21

Compression:

Stored size: 1.44 KB

Contents

{
  "$schema": "http://json-schema.org/draft-07/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}$"
    },
    "query": {
      "type": "object"
    }
  }
}

Version data entries

21 entries across 21 versions & 1 rubygems

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