Skip to content

Instantly share code, notes, and snippets.

View STAALAI's full-sized avatar

STAALAI

  • Joined Sep 20, 2025
View GitHub Profile
@STAALAI
STAALAI / repost_caption_en_v1.json
Created September 21, 2025 17:56
JSON Schema Linkedin Repost EN
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RepostCaptionEN",
"type": "object",
"additionalProperties": false,
"properties": {
"repost_text": { "type": "string", "minLength": 140, "maxLength": 300 },
"hashtags": {
"type": "array",
"items": { "type": "string", "pattern": "^#[A-Za-z0-9_]{2,30}$" },
@STAALAI
STAALAI / gist:fdca22a448629eae1a7dcd136f6d23fe
Last active September 21, 2025 13:14
JSON Schema Staal.ai Zapier output Linkedin Article EN
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ArticleOutput",
"type": "object",
"properties": {
"title": { "type": "string", "maxLength": 120 },
"subtitle": { "type": "string", "maxLength": 200 },
"introduction": { "type": "string", "minLength": 200, "maxLength": 600 },
"body": { "type": "string", "minLength": 400, "maxLength": 600 },
"conclusion": { "type": "string", "minLength": 100, "maxLength": 200 },