{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://raw.githubusercontent.com/valueflows/valueflows/master/json-schemas/ProcessSpecification.json",
    "title": "ProcessSpecification",
    "description": "Specifies the kind of process.",
    "type": "object",
    "properties": {
        "name": {
            "description": "An informal or formal textual identifier for the item. Does not imply uniqueness.",
            "type": "string"
        },
        "image": {
            "description": "The uri to an image relevant to the item, such as a photo, diagram, etc.",
            "type": "string",
            "format": "uri"
        },
        "note": {
            "description": "A textual comment or description.",
            "type": "string"
        }
    },
    "required": ["name"]
}
