schema.ems 335 Bytes
version = "1.0.0"
description = ""

schema DUREX 
{
    enum        BOOLEAN{ TRUE, FALSE };   
    typedef     string<239> String; //MAXIMUM SIZE AVAILABLE
    
    uint8   serverBytesAvailable;
    uint8   clientBytesAvailable;
    String  serverData;
    String  clientData;
    BOOLEAN serverMoreData;
    BOOLEAN clientMoreData;
}