pub trait IdentityJsonConversionMethodsV0 {
// Required methods
fn to_json_object(&self) -> Result<JsonValue, ProtocolError>;
fn to_json(&self) -> Result<JsonValue, ProtocolError>;
fn from_json(json_object: JsonValue) -> Result<Self, ProtocolError>
where Self: Sized;
}