{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AppInfo", "title": "AppInfo", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "example": "abc123" }, "name": { "type": "string", "example": "Example Title" }, "publisher": { "type": "string", "example": "example_value" }, "version": { "type": "string", "example": "example_value" }, "state": { "type": "string", "example": "example_value" }, "lastOperationId": { "type": "string", "format": "uuid", "example": "500123" }, "lastUpdateAttemptResult": { "type": "string", "example": "example_value" } } }