Sha256: 7a519f85453081d44ae8251b76e8f6fbe12dbc075e12ee12edecccb17d955680

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "maxLength": 32767
    },
    "responseCode": {
      "type": "integer",
      "minimum": 100,
      "maximum": 599
    },
    "verificationType": {
      "type": "string",
      "enum": [
        "facebook",
        "fitbit",
        "none",
        "twilio",
        "alexa"
      ]
    },
    "verificationCode": {
      "type": "string",
      "maxLength": 32767
    },
    "waitForReply": {
      "type": "boolean"
    },
    "basicAuthUsername": {
      "type": "string",
      "maxLength": 255
    },
    "basicAuthPassword": {
      "type": "string",
      "maxLength": 255
    },
    "isWebsocket": {
      "type": "boolean"
    },
    "castBuffersAs": {
      "type": "string",
      "enum": [
        "array",
        "binary",
        "utf8",
        "base64",
        "hex"
      ]
    },
    "annotateMultipart": {
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ],
  "additionalProperties": false
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
losant_rest-1.21.0 schemas/webhookPost.json
losant_rest-1.20.1 schemas/webhookPost.json
losant_rest-1.20.0 schemas/webhookPost.json
losant_rest-1.19.9 schemas/webhookPost.json