mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "openpype:hero_version-1.0",
|
|
"description": "Hero version of asset",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"required": [
|
|
"version_id",
|
|
"schema",
|
|
"type",
|
|
"parent"
|
|
],
|
|
|
|
"properties": {
|
|
"_id": {
|
|
"description": "Document's id (database will create it's if not entered)",
|
|
"example": "ObjectId(592c33475f8c1b064c4d1696)"
|
|
},
|
|
"version_id": {
|
|
"description": "The version ID from which it was created",
|
|
"example": "ObjectId(592c33475f8c1b064c4d1695)"
|
|
},
|
|
"schema": {
|
|
"description": "The schema associated with this document",
|
|
"type": "string",
|
|
"enum": ["openpype:hero_version-1.0"],
|
|
"example": "openpype:hero_version-1.0"
|
|
},
|
|
"type": {
|
|
"description": "The type of document",
|
|
"type": "string",
|
|
"enum": ["hero_version"],
|
|
"example": "hero_version"
|
|
},
|
|
"parent": {
|
|
"description": "Unique identifier to parent document",
|
|
"example": "ObjectId(592c33475f8c1b064c4d1697)"
|
|
}
|
|
}
|
|
}
|