{
"$defs": {
"SAMChatHistoryMetadata": {
"description": "Smarter API Chat Manifest - Metadata class.",
"properties": {
"name": {
"description": "The name of the manifest resource",
"title": "Name",
"type": "string"
},
"description": {
"description": "The description of the manifest resource",
"title": "Description",
"type": "string"
},
"version": {
"description": "The version of the manifest",
"title": "Version",
"type": "string"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The tags of the manifest",
"title": "Tags"
},
"annotations": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The annotations of the manifest",
"title": "Annotations"
}
},
"required": [
"name",
"description",
"version"
],
"title": "SAMChatHistoryMetadata",
"type": "object"
},
"SAMChatHistorySpecConfig": {
"description": "Smarter API Chat Manifest Chat.spec.config",
"properties": {},
"title": "SAMChatHistorySpecConfig",
"type": "object"
},
"SAMChatHistoryStatus": {
"description": "Smarter API Chat Manifest - Status class.",
"properties": {
"created": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Plugin.status.created: The date in which this Plugin was created. Read only.",
"title": "Created"
},
"modified": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Plugin.status.modified: The date in which this Plugin was most recently changed. Read only.",
"title": "Modified"
}
},
"required": [
"created",
"modified"
],
"title": "SAMChatHistoryStatus",
"type": "object"
}
},
"description": "Smarter API Manifest - Chat",
"properties": {
"apiVersion": {
"description": "apiVersion[String]: Required. The API version of the AbstractSAMBase.",
"title": "Apiversion",
"type": "string"
},
"kind": {
"description": "kind[String]: Required. The kind of resource described by the manifest.",
"title": "Kind",
"type": "string"
},
"metadata": {
"$ref": "#/$defs/SAMChatHistoryMetadata",
"description": "Plugin.metadata[obj]: Required, the Plugin metadata."
},
"spec": {
"$ref": "#/$defs/SAMChatHistorySpecConfig",
"description": "Plugin.spec[obj]: Required, the Plugin specification."
},
"status": {
"anyOf": [
{
"$ref": "#/$defs/SAMChatHistoryStatus"
},
{
"type": "null"
}
],
"description": "Plugin.status[obj]: Optional, Read-only. Stateful status information about the Plugin."
}
},
"required": [
"apiVersion",
"kind",
"metadata",
"spec",
"status"
],
"title": "SAMChatHistory",
"type": "object"
}