Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| id | integer | |
| name | string | |
| active | boolean | |
| events | array | |
| config | object | |
| updated_at | string | |
| created_at | string | |
| url | string | |
| ping_url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/global-hook-2",
"title": "global-hook-2",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"active": {
"type": "boolean"
},
"events": {
"type": "array",
"items": {
"type": "string"
}
},
"config": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"content_type": {
"type": "string"
},
"insecure_ssl": {
"type": "string"
}
}
},
"updated_at": {
"type": "string"
},
"created_at": {
"type": "string"
},
"url": {
"type": "string"
},
"ping_url": {
"type": "string"
}
}
}