Sha256: 0379f08438ecc6262c3fb34ccd16a3075db0e53f199dbb292551f5bc83298709

Contents?: true

Size: 1.86 KB

Versions: 19

Compression:

Stored size: 1.86 KB

Contents

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "applicationId": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "creationDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    },
    "authorId": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "authorType": {
      "type": "string",
      "enum": [
        "flow",
        "user",
        "device",
        "apiToken",
        "notebook"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "moving",
        "deleting",
        "completed"
      ]
    },
    "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"
        }
      }
    },
    "upload": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string"
        },
        "fields": {
          "type": "object",
          "patternProperties": {
            "^.*$": {
              "type": "string"
            }
          },
          "properties": {
            "key": {
              "type": "string"
            },
            "bucket": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}

Version data entries

19 entries across 19 versions & 1 rubygems

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