Sha256: 95b9707a15b009619d74703f466e856a6231277cfb5803032b3f596a8052ee86

Contents?: true

Size: 813 Bytes

Versions: 21

Compression:

Stored size: 813 Bytes

Contents

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    },
    "parentDirectory": {
      "type": "string",
      "maxLength": 1024
    },
    "type": {
      "type": "string",
      "enum": [
        "file",
        "directory"
      ]
    },
    "fileSize": {
      "type": "number"
    },
    "contentType": {
      "type": "string",
      "maxLength": 1024
    },
    "fileDimensions": {
      "type": "object",
      "properties": {
        "width": {
          "type": "number"
        },
        "height": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "type"
  ]
}

Version data entries

21 entries across 21 versions & 1 rubygems

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