{
	"$schema": "http://json-schema.org/draft-03/schema#",
	"title": "Webhook Product Properties Deleted Payload",
	"description": "Describes the payload returned after a product property is deleted.",
	"type": "object",
	"properties": {
		"triggered_at": {
			"description": "Datetime in UTC when the event was triggered.",
			"type": "string",
			"format": "date-time",
			"required": true
		},
		"id": {
			"description": "Unique id of the product property.",
			"type": "integer",
			"minimum": 0,
			"exclusiveMinimum": true,
			"required": true
		},
		"parent": {
			"description": "Optional parent product property id.",
			"type": "integer|null",
			"required": false
		},
		"name": {
			"description": "Name of the product property.",
			"type": "string",
			"maxLength": 255,
			"required": true
		}
	},
	"additionalProperties": false
}
