isNewContent
Check if content items from YouTube, blogs, or releases are new by verifying they haven't been seen before, helping identify fresh content across sessions.
Instructions
Return true if this content item has NOT been seen before.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"youtube",
"blog",
"release"
],
"type": "string"
}
},
"required": [
"id",
"type"
],
"type": "object"
}