Json schema
Skill a5c-ai/babysitter/library/specializations/web-development/skills/json-schema
JSON Schema validation and API contract design.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill json-schemaAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.1 KB, 193 tokens by cl100k_base, as published. Nobody here has run it
JSON Schema Skill
Expert assistance for JSON Schema validation.
Capabilities
- Write JSON Schemas
- Validate data
- Design API contracts
- Generate documentation
- Handle complex types
Schema Example
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"id": { "type": "string", "format": "uuid" },
"name": { "type": "string", "minLength": 1 },
"email": { "type": "string", "format": "email" },
"age": { "type": "integer", "minimum": 0 }
},
"required": ["id", "name", "email"],
"additionalProperties": false
}
Target Processes
- api-contract-design
- validation-setup
- documentation
What ships with it: 1 file
299 B alongside SKILL.md
- README.md299 B