AiPromptss
Back to browse

Schema Definition

{ "type" : "object" , "properties" : { "summary" : { "type" : "string" , "description" : "Brief summary in 1-2 sentences" } , "sentiment" : { "type" : "string"…

Added May 19, 20260 views0 copies
Prompt
{
"type"
:
"object"
,
"properties"
:
{
"summary"
:
{
"type"
:
"string"
,
"description"
:
"Brief summary in 1-2 sentences"
}
,
"sentiment"
:
{
"type"
:
"string"
,
"enum"
:
[
"positive"
,
"negative"
,
"neutral"
]
}
,
"key_topics"
:
{
"type"
:
"array"
,
"items"
:
{
"type"
:
"string"
}
,
"maxItems"
:
5
}
}
,
"required"
:
[
"summary"
,
"sentiment"
,
"key_topics"
]
}

Replace text in [BRACKETS] with your own values before pasting.