{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GitSettings", "title": "GitSettings", "type": "object", "properties": { "enabled": { "type": "boolean", "description": "Whether Git integration is enabled" }, "repoUrl": { "type": "string", "description": "The Git repository URL" }, "branch": { "type": "string", "description": "The Git branch to use" }, "authType": { "type": "string", "description": "The authentication method for Git", "enum": [ "none", "token", "ssh" ] }, "autoSync": { "type": "boolean", "description": "Whether to automatically sync with Git" } } }