{
    "$id": "https://www.fatzebra.com/schemas/customer.json",
    "type": "object",
    "definitions": {
        "Customer": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
                "firstName": {
                    "type": "string"
                },
                "lastName": {
                    "type": "string"
                },
                "email": {
                    "type": "string",
                    "format": "email"
                },
                "address": {
                    "type": "string"
                },
                "city": {
                    "type": "string"
                },
                "postcode": {
                    "type": "string"
                },
                "state": {
                    "type": "string"
                },
                "country": {
                    "type": "string"
                }
            },
            "required": []
        }
    }
}
