Schema Definitions
This page provides technical schema definitions for MVMD metadata structures, serving as a reference for developers implementing MVMD-compliant systems.
JSON Schema Definitions
MVMD provides JSON Schema definitions that can be used to validate metadata against our specifications:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://mvmd.org/schemas/v1/core",
"title": "MVMD Core Schema",
"description": "Schema for validating MVMD core metadata",
"type": "object",
"required": ["@context", "@type"],
"properties": {
"@context": {
"type": ["object", "string", "array"],
"description": "The JSON-LD context defining the vocabulary"
},
"@type": {
"type": ["string", "array"],
"description": "The primary type of the described resource"
},
"name": {
"type": "string",
"description": "The name of the asset",
"maxLength": 100
},
"description": {
"type": "string",
"description": "A description of the asset",
"maxLength": 1000
}
}
}