Sha256: 0ca066cb759c56701c54f2e7c3e6344ed9437d5650ebc0d2e1a36852872acdf3

Contents?: true

Size: 1.94 KB

Versions: 6

Compression:

Stored size: 1.94 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "pattern": "^[A-Fa-f\\d]{24}$"
      },
      "email": {
        "type": "string",
        "format": "email",
        "maxLength": 1024
      },
      "role": {
        "type": "string",
        "enum": [
          "admin",
          "edit",
          "collaborate",
          "view",
          "none"
        ]
      },
      "applicationRoles": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "resourceId": {
              "type": "string",
              "pattern": "^[A-Fa-f\\d]{24}$"
            },
            "role": {
              "type": "string",
              "enum": [
                "collaborate",
                "view",
                "none"
              ]
            }
          },
          "required": [
            "resourceId",
            "role"
          ],
          "additionalProperties": false
        },
        "maxItems": 1000
      },
      "dashboardRoles": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "resourceId": {
              "type": "string",
              "pattern": "^[A-Fa-f\\d]{24}$"
            },
            "role": {
              "type": "string",
              "enum": [
                "collaborate",
                "view",
                "none"
              ]
            }
          },
          "required": [
            "resourceId",
            "role"
          ],
          "additionalProperties": false
        },
        "maxItems": 1000
      },
      "inviteDate": {
        "type": "string",
        "format": "date-time"
      },
      "ttl": {
        "type": "number"
      },
      "hasExpired": {
        "type": "boolean"
      },
      "disallowTransfer": {
        "type": "boolean"
      }
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
losant_rest-1.13.1 schemas/orgInvites.json
losant_rest-1.13.0 schemas/orgInvites.json
losant_rest-1.12.0 schemas/orgInvites.json
losant_rest-1.11.1 schemas/orgInvites.json
losant_rest-1.11.0 schemas/orgInvites.json
losant_rest-1.10.4 schemas/orgInvites.json