Sha256: cce10c7c44ba1d868c13307f174f3a2a513750a417993b240dd21f9b8cfd707e

Contents?: true

Size: 1.03 KB

Versions: 19

Compression:

Stored size: 1.03 KB

Contents

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "oneOf": [
    {
      "title": "Data Table Row Insert Update",
      "description": "Schema for inserting or updating a data table row",
      "type": "object",
      "patternProperties": {
        "^[0-9a-zA-Z_-]{1,255}$": {
          "type": [
            "string",
            "number",
            "boolean",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    {
      "title": "Data Table Row Insert Multiple",
      "description": "Schema for inserting data table rows",
      "type": "array",
      "items": {
        "title": "Data Table Row Insert Update",
        "description": "Schema for inserting or updating a data table row",
        "type": "object",
        "patternProperties": {
          "^[0-9a-zA-Z_-]{1,255}$": {
            "type": [
              "string",
              "number",
              "boolean",
              "null"
            ]
          }
        },
        "additionalProperties": false
      }
    }
  ]
}

Version data entries

19 entries across 19 versions & 1 rubygems

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