{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProcessHistory", "title": "ProcessHistory", "type": "object", "properties": { "name": { "type": "string", "example": "Example Title" }, "history": { "type": "array", "items": { "type": "object", "properties": { "startTime": { "type": "string", "format": "date-time" }, "endTime": { "type": "string", "format": "date-time" }, "status": { "type": "string" }, "reason": { "type": "string" } } }, "example": [] } } }