AgentTemplateSummary
Summary view of agent template for catalog listing
Properties
| Property | Type | Required | Description |
|---|---|---|---|
description |
string,null | No | |
id |
string | Yes | |
is_verified |
boolean | Yes | |
language |
TemplateLanguage | Yes | |
name |
string | Yes | |
price_atomic |
integer | Yes | |
publisher_name |
string,null | No | |
publisher_slug |
string,null | No | |
slug |
string | Yes | |
total_invocations |
integer | Yes |
View JSON Schema
{
"type": "object",
"description": "Summary view of agent template for catalog listing",
"required": [
"id",
"slug",
"name",
"language",
"price_atomic",
"is_verified",
"total_invocations"
],
"properties": {
"description": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"is_verified": {
"type": "boolean"
},
"language": {
"$ref": "#/components/schemas/TemplateLanguage"
},
"name": {
"type": "string"
},
"price_atomic": {
"type": "integer",
"format": "int64"
},
"publisher_name": {
"type": [
"string",
"null"
]
},
"publisher_slug": {
"type": [
"string",
"null"
]
},
"slug": {
"type": "string"
},
"total_invocations": {
"type": "integer",
"format": "int64"
}
}
}