MessagePack
                                MessagePack                            
                            A message pack representing a localizable message and suitable for machine processing. Contains a message key unique in the scope of the specified component, as well as the arguments needed to generate the localized message.
JSON Example
                                    {
    "arguments": [
        "string"
    ],
    "component": "string",
    "message": "string",
    "messageKey": "string"
}
                            
                                    array of 
                
            
            
                                    string
                
                
            
        
        
                arguments            
                            Optional
            
            
        The arguments used to localize the message. Can be used by scripts to automate the response processing.
            
            
                                    string
                
                
            
        
        
                component            
                            Optional
            
            
        The component the message belongs to
            
            
                                    string
                
                
            
        
        
                message            
                            Optional
            
            
        The localized message (if not provided by another property)
            
            
                                    string
                
                
            
        
        
                messageKey            
                            Required
            
            
        The machine-readable key of the message
