{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Process",
    "description": "A compute process -- i.e. an instance of a computer program / software application that is being executed by one or many threads. This is NOT a program level operational process (i.e. a Procedure).",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "state": {
                    "description": "Indicates the state of the process.",
                    "type": "string"
                }
            },
            "required": []
        }
    ]
}
