{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Webhook", "description": "Schema for a single Webhook", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "webhookId": { "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" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "token": { "type": "string", "minLength": 1 }, "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 } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "perPage": { "type": "integer" }, "page": { "type": "integer" }, "filter": { "type": "string" }, "filterField": { "type": "string" }, "sortField": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }