ayon-core/schema/hero_version-1.0.json
2021-04-01 10:40:10 +02:00

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)"
}
}
}