{ "$schema":                "https://json-schema.org/draft/2020-12/schema",
  "$id":                    "https://schemas.mpai.community/TFA/V1.5/data/3DModelQualifier.json",
  "title":                  "3D Model Qualifier V1.5", 
                            "description": "Specifies Sub-Type, Content and Transport Formats for 3D models.",
                            "type": "object", "additionalProperties": false, 
                            "required": [ "Header", "3DModelQualifierID", "SubType", "Format" ], "properties": {

    "Header":               { "type": "string", "pattern": "^TFA-3MQ-V[0-9]{1,2}[.][0-9]{1,2}$" },

    "3DModelQualifierID":   { "type": "string" },

    "SubType":              { "type": "string", "enum": ["Real", "Virtual", "Hybrid"] },

    "Format":               { "type": "object", "additionalProperties": false, "properties": {
      "ContentFormat":      { "$ref": "https://schemas.mpai.community/TFA/V1.5/formats/3DModelContentFormats.json" },
      "TransportFormat":    { "$ref": "https://schemas.mpai.community/TFA/V1.5/formats/3DModelTransportFormats.json" } } },

    "Attributes":           { "type": "object" },

    "DataExchangeMetadata": { "$ref": "https://schemas.mpai.community/AIF/V3.0/data/DataExchangeMetadata.json" },
    "Trace":                { "$ref": "https://schemas.mpai.community/AIF/V3.0/data/Trace.json" },
    "DescrMetadata":        { "type": "string", "maxLength": 2048 } } }
