{
	"$schema": "http://json-schema.org/draft-03/schema#",
	"title": "Webhook Product Property Values Updated Payload",
	"description": "Describes the payload returned after a product property value is updated.",
	"type": "object",
	"properties": {
		"triggered_at": {
			"description": "Datetime in UTC when the event was triggered.",
			"type": "string",
			"format": "date-time",
			"required": true
		},
		"href": {
			"description": "Link to self.",
			"type": "string",
			"format": "uri",
			"required": true
		},
		"id": {
			"description": "Unique id of the product property value.",
			"type": "integer",
			"minimum": 0,
			"exclusiveMinimum": true,
			"required": true
		},
		"value": {
			"description": "The value of the product property.",
			"type": "string|null",
			"required": false
		},
		"product_id": {
			"description": "The product id this value belongs to.",
			"type": "integer",
			"minimum": 0,
			"exclusiveMinimum": true,
			"required": true
		},
		"product_property_id": {
			"description": "The product property id this value belongs to.",
			"type": "integer",
			"minimum": 0,
			"exclusiveMinimum": true,
			"required": true
		}
	},
	"additionalProperties": false
}
