changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "as_of": {
+ "description": "Server time this response was assembled (ISO 8601).",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "When the ping was sent (ISO 8601).",
+ "type": "string"
+ },
+ "delivered": {
+ "description": "Whether your endpoint accepted the ping (2xx within the timeout).",
+ "type": "boolean"
+ },
+ "elapsed_ms": {
+ "description": "Round-trip time of the ping.",
+ "type": "number"
+ },
+ "error": {
+ "description": "Why delivery failed, in words; `null` on success.",
+ "type": "string"
+ },
+ "http_status": {
+ "description": "The status your endpoint returned; `null` when it could not be reached.",
+ "type": "number"
+ },
+ "id": {
+ "description": "Delivery id of the test — `dl_…`, the same shape as a real delivery on the deliveries route.",
+ "type": "string"
+ },
+ "status": {
+ "description": "The delivery record's status: `delivered` or `permanent_failure` (a test is never retried).",
+ "type": "string"
+ },
+ "test": {
+ "description": "`true` — this delivery was a synthetic ping, not a trigger firing.",
+ "type": "boolean"
+ },
+ "webhook_id": {
+ "description": "The webhook that was tested.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "as_of",
+ "id",
+ "webhook_id",
+ "test",
+ "delivered",
+ "http_status",
+ "elapsed_ms",
+ "error",
+ "status",
+ "created_at"
+ ],
+ "type": "object"
+}