Overview
This section covers the technical standards that integrate with MVMD through namespaces. Each standard has dedicated documentation on how to properly incorporate it into your metadata.
Understanding Technical Standards in MVMD
MVMD uses specific technical standards as namespaces, allowing you to:
- Include specialized properties from established standards
- Maintain compatibility with existing tools and ecosystems
- Provide detailed technical information in a structured format
- Ensure semantic clarity through proper contextualization
Standards as Namespaces
In MVMD, technical standards are incorporated through namespaces in the @context
object:
{
"@context": {
"@vocab": "https://schema.org/",
"mvmd": "https://mvmd.org/v1/",
"gltf": "https://www.khronos.org/gltf/"
},
"@type": "3DModel",
"name": "Character Model",
"gltf:materials": [
{
"name": "Skin",
"pbrMetallicRoughness": {
"baseColorFactor": [1.0, 0.8, 0.7, 1.0]
}
}
]
}
Supported Technical Standards
MVMD provides detailed integration guidance for these technical standards:
3D Standards
- glTF: The "JPEG of 3D" for efficient transmission of 3D assets
- USD: Universal Scene Description for complex scenes and compositions
- VRM: Humanoid avatar format with specialized metadata
- FBX: Industry standard for 3D content creation workflows
- USDZ: Compressed USD format for AR experiences
Interaction & Experience Standards
- OpenXR: Cross-platform standard for virtual and augmented reality
Geospatial Standards
- CityJSON: Lightweight city model format
- 3D Tiles: Streaming and rendering massive 3D geospatial content
Trust & Provenance
- C2PA: Content authenticity and provenance verification
Core Vocabulary
- Schema.org: Foundation for all MVMD metadata
Implementation Guidance
Each standard document includes:
- Namespace Declaration: How to properly reference the standard
- Key Properties: Most important properties from the standard to include
- Integration Examples: Complete JSON-LD examples showing proper usage
- Validation: How to validate against the standard's requirements
- Best Practices: Recommendations for effective integration
Choosing Standards
When deciding which standards to integrate:
- Start with Schema.org: Always use Schema.org as your foundation
- Add format-specific standards: Include standards relevant to your file formats
- Consider specialized domains: Add domain-specific standards when needed
- Balance comprehensiveness with simplicity: Only include what's necessary
Cross-References to Implementation Guides
For practical implementation guidance, see these related resources:
Related Resources
Getting Started
- Review the standard-specific documentation for your implementation
- Integrate relevant properties using the appropriate namespace
- Validate your metadata using our validation tools
Next Steps
After reviewing the standards documentation:
- Examine the integration profiles that apply to your assets
- Follow the implementation guides for your use case
- Validate your metadata using our validation tools