JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhook_Full",
"title": "webhook_Full",
"allOf": [
{
"$ref": "#/components/schemas/webhook_Base"
},
{
"title": "webhook_Full",
"properties": {
"id": {
"type": "integer",
"description": "ID of the webhook.",
"example": 18048287
},
"client_id": {
"type": "string",
"description": "Client ID, unique to the store or app.",
"example": "m9r6keqmo7h7f23btnpwernbez1kglkl"
},
"store_hash": {
"type": "string",
"description": "Permanent ID of the BigCommerce store.",
"example": "sftg45fsd"
},
"created_at": {
"type": "integer",
"example": 1561488106,
"description": "The time the webhook was created, represented in UNIX epoch time."
},
"updated_at": {
"type": "integer",
"example": 1561488106,
"description": "The time the webhook was most recently updated, represented in UNIX epoch time."
}
}
}
]
}