{ "$schema":                  "https://json-schema.org/draft/2020-12/schema",
  "$id":                      "https://schemas.mpai.community/MMM4/V2.2/data/InterpretationObject.json",
  "title":                    "Interpretation Object V2.2",
  "type":                     "object",
  "properties":               {

    "Header":                 { "type": "string", "pattern": "^MMM-ITO-V[0-9],{1,2},[.][0-9],{1,2}$" },
    "MInstanceID":            { "type": "string" },
    "InterpretationID":       { "type": "string" },

    "InterpretationData":     { "type": "array", "items": { "anyOf": [
                              { "type": "object", "properties": {
      "DataLength":           { "type": "integer" },
      "DataURI":              { "type": "string", "format": "uri" } } },
                              { "type": "object", "properties": {
      "Data":                 { "type": "string" } } },
                              { "type": "object", "properties": {
      "DataID":               { "type": "string" } } } ] } },

    "InterpretationQualifier":{ "$ref": "https://schemas.mpai.community/TFA/V1.5/data/InterpretationQualifier.json" },

    "DataXMData":             { "$ref": "https://schemas.mpai.community/PTF/V1.0/data/DataExchangeMetadata.json" },
    "DescrMetadata":          { "type": "string", "maxLength": 2048 } } }

