{
    "asyncapi": "1.0.0",
    "info": {
        "title": "events",
        "version": "v1",
        "description": "Events v1"
    },
    "topics": {
        "customer.created.v1": {
            "subscribe": {
                "summary": "Customer Register Event v2",
                "payload": {
                    "type": "object",
                    "properties": {
                        "customerUid": {
                            "type": "string",
                            "example": "adam@example.com",
                            "description": "Email of a Customer",
                            "title": "Customer uid"
                        },
                        "storeUid": {
                            "type": "string",
                            "example": "4caad296",
                            "description": "Unique id of a Store",
                            "title": "StoreUid"
                        },
                        "customerId": {
                            "type": "string",
                            "example": "0ed118f9474e",
                            "description": "Unique id of a Customer",
                            "title": "Customer uid"
                        }
                    }
                }
            }
        }
    }
}