Three-note chord and half rest

See also: This same example in MusicXML
{
   "mnx": {
      "version": 1
   },
   "global": {
      "measures": [
         {
            "barline": {
               "type": "regular"
            },
            "time": {
               "count": 4,
               "unit": 4
            }
         }
      ]
   },
   "parts": [
      {
         "measures": [
            {
               "clefs": [
                  {
                     "clef": {
                        "sign": "G",
                        "staffPosition": -2
                     }
                  }
               ],
               "sequences": [
                  {
                     "content": [
                        {
                           "duration": {
                              "base": "half"
                           },
                           "notes": [
                              {
                                 "pitch": {
                                    "octave": 4,
                                    "step": "C"
                                 }
                              },
                              {
                                 "pitch": {
                                    "octave": 4,
                                    "step": "E"
                                 }
                              },
                              {
                                 "pitch": {
                                    "octave": 4,
                                    "step": "G"
                                 }
                              }
                           ]
                        },
                        {
                           "duration": {
                              "base": "half"
                           },
                           "rest": {}
                        }
                     ]
                  }
               ]
            }
         ]
      }
   ]
}