Sha256: 9f89e89e0c337c26e29b1cd91cd8b93addbe85a9520a0cab84f407e4f3d9d08b

Contents?: true

Size: 1.31 KB

Versions: 12

Compression:

Stored size: 1.31 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "applicationKeyId": {
      "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"
    },
    "key": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "secret": {
      "type": "string"
    },
    "deviceIds": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[A-Fa-f\\d]{24}$"
      }
    },
    "deviceTags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string",
            "pattern": "^[0-9a-zA-Z_-]{1,255}$"
          },
          "value": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          }
        },
        "additionalProperties": false
      }
    },
    "description": {
      "type": "string",
      "maxLength": 32767
    }
  }
}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
losant_rest-1.1.2 schemas/applicationKey.json
losant_rest-1.1.1 schemas/applicationKey.json
losant_rest-1.1.0 schemas/applicationKey.json
losant_rest-1.0.8 schemas/applicationKey.json
losant_rest-1.0.7 schemas/applicationKey.json
losant_rest-1.0.6 schemas/applicationKey.json
losant_rest-1.0.5 schemas/applicationKey.json
losant_rest-1.0.4 schemas/applicationKey.json
losant_rest-1.0.3 schemas/applicationKey.json
losant_rest-1.0.2 schemas/applicationKey.json
losant_rest-1.0.1 schemas/applicationKey.json
losant_rest-1.0.0 schemas/applicationKey.json