{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VulnerabilityUpdate", "title": "VulnerabilityHistory", "properties": { "id": { "type": "string", "format": "uuid", "description": "The ID of update which applied the changes.", "readOnly": true }, "create_time": { "type": "string", "description": "The time of the update which applied the changes.", "example": "2021-08-03T14:07:37", "readOnly": true }, "source": { "$ref": "#/components/schemas/VulnerabilityUpdateSource" }, "changes": { "type": "array", "description": "The collection of changes that were applied in the update.", "items": { "$ref": "#/components/schemas/VulnerabilityChange" }, "readOnly": true } } }