{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"createdAt": {
"type": "number"
},
"itemId": {
"type": "string"
},
"payload": {
"additionalProperties": true,
"type": "object"
},
"status": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
},
"type": {
"type": "string"
},
"updatedAt": {
"type": "number"
}
},
"required": [
"itemId",
"threadId",
"turnId",
"type",
"status",
"payload",
"createdAt",
"updatedAt"
],
"title": "AppItem",
"type": "object"
}