{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "GitSource", "type": "object", "properties": { "git_url": { "type": "string", "description": "URL of the Git repository" }, "git_provider": { "type": "string", "description": "Git provider type" }, "git_branch": { "type": "string", "description": "Branch to check out" }, "git_tag": { "type": "string", "description": "Tag to check out" }, "git_commit": { "type": "string", "description": "Commit hash to check out" } } }