Skip to content

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Order Model

{
    "id": "guid",
    "name": "customer name",
    "placed": "<timestamp>"
    "details": {
        "size": "<size>",
        "type": "<type>",
        "cookTime": "<cook time in seconds>",
        "toppings": [
            "cheese|pepperoni|sausage|whatever"
        ]
    },
    "events": []
}

Event Model

{
    "type": "prep|cook|finish|deliver",
    "start": "<timestamp>",
    "end": "<timestamp>",
}

Settings Model

{
    "toppings": [
        "<topping>"
    ],
    "crusts": [{ 
        "<type>": {
            "<size>": "<cook time>"
        }
    ]
}