Sha256: fc77ee4c1d4ccfd780fa397de4009ef44ab6fe59c292064f693201c3204aa1c0

Contents?: true

Size: 1.45 KB

Versions: 19

Compression:

Stored size: 1.45 KB

Contents

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "apiTokenId": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "ownerId": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "ownerType": {
      "type": "string",
      "enum": [
        "application",
        "user"
      ]
    },
    "creatorId": {
      "type": "string",
      "pattern": "^[A-Fa-f\\d]{24}$"
    },
    "creatorType": {
      "type": "string",
      "enum": [
        "apiToken",
        "user",
        "flow"
      ]
    },
    "creatorName": {
      "type": "string",
      "maxLength": 1024
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "maxLength": 32767
    },
    "creationDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    },
    "expirationDate": {
      "type": "string",
      "format": "date-time"
    },
    "scope": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 1024
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "token": {
      "type": "string",
      "minLength": 1
    }
  }
}

Version data entries

19 entries across 19 versions & 1 rubygems

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