{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://designsystemdocspec.org/v0.15.2/metadata/preview.schema.json",
"title": "Preview metadata field",
"description": "A visual or interactive preview.",
"$defs": {
"preview": {
"description": "A visual or interactive preview of the entity (ex: image, video, code snippet, or URL). The value is a presentation object. Its `kind` tag selects the media type.",
"oneOf": [
{
"$ref": "../common/presentation.schema.json#/$defs/presentationImage"
},
{
"$ref": "../common/presentation.schema.json#/$defs/presentationVideo"
},
{
"$ref": "../common/presentation.schema.json#/$defs/presentationCode"
},
{
"$ref": "../common/presentation.schema.json#/$defs/presentationUrl"
}
]
}
}
}