{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Workflow",
    "description": "A workflow such as an AWS CodePipeline, GitHub repository workflow, or Apache Airflow.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "name": {
                    "description": "Name of the workflow",
                    "type": "string"
                }
            },
            "required": []
        }
    ]
}
