{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LLMSkillFile", "title": "LLMSkillFile", "type": "object", "properties": { "path": { "type": "string", "maxLength": 500 }, "content": { "type": "string" }, "content_type": { "type": "string", "maxLength": 100 } }, "required": [ "content", "path" ] }