{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Container",
    "description": "A standard unit of software that packages up code and all its dependencies and configurations.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "image": {
                    "description": "The container image that the container is built from",
                    "type": "string"
                },
                "dockerVersion": {
                    "description": "The version of the Docker Engine",
                    "type": "string"
                }
            },
            "required": []
        }
    ]
}
