Repeats (more than once repeated)

In this example, the measure is to be performed four times (or “repeated three times,” depending on your perspective).
See also: This same example in MusicXML
{
   "mnx": {
      "version": 1
   },
   "global": {
      "measures": [
         {
            "repeatEnd": {
               "times": 4
            },
            "time": {
               "count": 4,
               "unit": 4
            }
         }
      ]
   },
   "parts": [
      {
         "measures": [
            {
               "clefs": [
                  {
                     "clef": {
                        "sign": "G",
                        "staffPosition": -2
                     }
                  }
               ],
               "sequences": [
                  {
                     "content": [
                        {
                           "duration": {
                              "base": "whole"
                           },
                           "notes": [
                              {
                                 "pitch": {
                                    "octave": 5,
                                    "step": "C"
                                 }
                              }
                           ]
                        }
                     ]
                  }
               ]
            }
         ]
      }
   ]
}