{
    "api": "YAML JSON TOON Database",
    "version": "1.0.0",
    "format": "json",
    "dataset": {
        "slug": "version-control-workflows",
        "title": "Version Control Workflows",
        "description": "Common branching and collaboration workflows.",
        "category": "DevOps",
        "category_slug": "devops",
        "tags": "devops,git,workflow",
        "view_count": 0
    },
    "data": [
        {
            "workflow": "Centralized",
            "description": "All developers commit to a single shared branch."
        },
        {
            "workflow": "Feature Branch",
            "description": "Each feature is developed in an isolated branch and merged via pull request."
        },
        {
            "workflow": "Gitflow",
            "description": "Uses master, develop, feature, release, and hotfix branches."
        },
        {
            "workflow": "Forking",
            "description": "Contributors fork the repository and submit pull requests."
        },
        {
            "workflow": "Trunk-Based",
            "description": "Developers commit to a single trunk frequently with short-lived branches."
        }
    ]
}