Sha256: 6174ca089737daaaa2587da850abd54a4dce1cf69b749bb1990e98c9e25ad64a

Contents?: true

Size: 1.03 KB

Versions: 29

Compression:

Stored size: 1.03 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/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

29 entries across 29 versions & 1 rubygems

Version Path
losant_rest-1.16.5 schemas/dataTableRowInsert.json
losant_rest-1.16.3 schemas/dataTableRowInsert.json
losant_rest-1.16.2 schemas/dataTableRowInsert.json
losant_rest-1.16.1 schemas/dataTableRowInsert.json
losant_rest-1.16.0 schemas/dataTableRowInsert.json
losant_rest-1.15.2 schemas/dataTableRowInsert.json
losant_rest-1.15.1 schemas/dataTableRowInsert.json
losant_rest-1.15.0 schemas/dataTableRowInsert.json
losant_rest-1.14.1 schemas/dataTableRowInsert.json
losant_rest-1.14.0 schemas/dataTableRowInsert.json
losant_rest-1.13.1 schemas/dataTableRowInsert.json
losant_rest-1.13.0 schemas/dataTableRowInsert.json
losant_rest-1.12.0 schemas/dataTableRowInsert.json
losant_rest-1.11.1 schemas/dataTableRowInsert.json
losant_rest-1.11.0 schemas/dataTableRowInsert.json
losant_rest-1.10.4 schemas/dataTableRowInsert.json
losant_rest-1.10.3 schemas/dataTableRowInsert.json
losant_rest-1.10.2 schemas/dataTableRowInsert.json
losant_rest-1.10.1 schemas/dataTableRowInsert.json
losant_rest-1.10.0 schemas/dataTableRowInsert.json