mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "openpype:version-1.0",
|
|
"description": "An individual version",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"required": [
|
|
"schema",
|
|
"version",
|
|
"path",
|
|
"time",
|
|
"author",
|
|
"source",
|
|
"representations"
|
|
],
|
|
|
|
"properties": {
|
|
"schema": {"type": "string"},
|
|
"representations": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "representation.json"
|
|
}
|
|
},
|
|
"time": {
|
|
"description": "ISO formatted, file-system compatible time",
|
|
"type": "string"
|
|
},
|
|
"author": {
|
|
"description": "User logged on to the machine at time of publish",
|
|
"type": "string"
|
|
},
|
|
"version": {
|
|
"description": "Number of this version",
|
|
"type": "number"
|
|
},
|
|
"path": {
|
|
"description": "Unformatted path, e.g. '{root}/assets/Bruce/publish/lookdevDefault/v001",
|
|
"type": "string"
|
|
},
|
|
"source": {
|
|
"description": "Original file from which this version was made.",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|