Working with IVMS101
IVMS101 (the interVASP Messaging Standard) is an internationally recognized standard that helps with language encodings, numeric identification systems, phonetic name pronunciations, and standardized country codes (ISO 3166). This page describes how to convert between JSON and protocol buffer formatting for IVMS101 records. For general information about IVMS, please visit intervasp.org.
Marshaling and Unmarshaling
IVMS101 JSON data should be marshaled and unmarshaled using the encoding/json
package to produce data mostly compatible with the ivmsvalidator.com tool produced by 21 Analytics.
Fixtures that are unmarshaled using the protojson
package are not compatible with the 21 Analytics validator tool. The only reason to use the protojson
style is if you’re specifically working with protocol buffers and need a human-readable/editable format.
Unless you are specifically developing against a Go code base with marshaled protocol buffer TRISA structs, we strongly recommend that you use encoding/json
for IVMS 101 serialization and JSON exchange.
The ivms101
package in trisa
is designed to provide convenient tools for marshaling and unmarshaling IVMS101 identity payloads (which contain many nested fields) to and from a file, as illustrated below.
For examples of fixtures that represent the JSON style, see the files from the trisa
directory that end in the extension .json
. For examples of protojson
fixtures, see the files from the trisa
directory that end in the extension .pb.json
.
IVMS101 JSON
Use the encoding/json
package as follows:
package ivms101_test
import (
"encoding/json"
"io/ioutil"
"github.com/trisacrypto/trisa/pkg/ivms101"
)
func LoadJSON(path string) (identity *ivms101.IdentityPayload, err error) {
var data []byte
if data, err = ioutil.ReadFile(path); err != nil {
return nil, err
}
identity = &ivms101.IdentityPayload{}
if err = json.Unmarshal(data, identity); err != nil {
return nil, err
}
return identity, nil
}
func DumpJSON(identity *ivms101.IdentityPayload, path string) (err error) {
var data []byte
if data, err = json.Marshal(identity); err != nil {
return err
}
if err = ioutil.WriteFile(path, data, 0644); err != nil {
return err
}
return nil
}
Note that when unmarshaling from protocol buffers to JSON, this package does not copy any nil fields from the protobuf to the JSON file.
Protocol Buffers JSON
Not recommended; in most cases, you will want to use IVMS101 JSON as described above.
For specific protocol buffer use cases, use the protojson
file as follows:
package ivms101_test
import (
"io/ioutil"
"github.com/trisacrypto/trisa/pkg/ivms101"
"google.golang.org/protobuf/encoding/protojson"
)
func LoadPBJ(path string) (identity *ivms101.IdentityPayload, err error) {
var data []byte
if data, err = ioutil.ReadFile(path); err != nil {
return nil, err
}
jsonpb := protojson.UnmarshalOptions{
AllowPartial: true,
DiscardUnknown: true,
}
identity = &ivms101.IdentityPayload{}
if err = jsonpb.Unmarshal(data, identity); err != nil {
return nil, err
}
return identity, nil
}
func DumpPBJ(identity *ivms101.IdentityPayload, path string) (err error) {
jsonpb := protojson.MarshalOptions{
Multiline: true,
Indent: " ",
AllowPartial: true,
UseProtoNames: true,
UseEnumNumbers: false,
EmitUnpopulated: true,
}
var data []byte
if data, err = jsonpb.Marshal(identity); err != nil {
return err
}
if err = ioutil.WriteFile(path, data, 0644); err != nil {
return err
}
return nil
}