{ "$schema":                "https://json-schema.org/draft/2020-12/schema",
  "$id":                    "https://schemas.mpai.community/OSD/V1.5/data/Plot.json",
  "title":                  "Plot V1.5", 
  "type":                   "object", 
  "properties":             {

    "Header":               { "type": "string", "pattern": "^OSD-PLT-[0-9]{1,2}[.][0-9]{1,2}$" },
    "MInstanceID":          { "type": "string" },
    "UEnvironmentID":       { "type": "string" },
    "PlotID":               { "type": "string" },

    "PlotTime":             { "$ref": "https://schemas.mpai.community/OSD/V1.5/data/Time.json" },

    "Plot":                 { "type": "object", "properties": {
      "2D":                 { "type": "array", "items": { "type": "array", "items": { "type": "number" } } },
      "3D":                 { "type": "array", "items": { "type": "array", "items": { "type": "array", "items": { "type": "number" } } } },
      "4D":                   { "type": "array", "items": { "type": "array", "items": { "type": "array", "items": {
                                "type": "array", "items": { "type": "array", "items": { "type": "number" } } } } } } } },

    "DataXMData":           { "$ref": "https://schemas.mpai.community/PTF/V1.0/data/DataExchangeMetadata.json" },
    "DescrMetadata":        { "type": "string", "maxLength": 2048 } } }