{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/aiignore/refs/heads/main/json-structure/aiignore-exclusion-pattern-structure.json", "name": "ExclusionPattern", "description": "A pattern category for AI ignore exclusion rules", "type": "object", "properties": { "category": { "type": "string", "description": "Category name (secrets, proprietary, generated)", "example": "secrets" }, "patterns": { "type": "array", "description": "List of glob patterns in this category", "items": { "type": "string" } }, "rationale": { "type": "string", "description": "Why these files should be excluded", "example": "Contains API keys and credentials that should not be sent to AI APIs" } } }