mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
86 lines
2.5 KiB
JSON
86 lines
2.5 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "pype:project-2.1",
|
|
"description": "A unit of data",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"required": [
|
|
"schema",
|
|
"type",
|
|
"name",
|
|
"data",
|
|
"config"
|
|
],
|
|
|
|
"properties": {
|
|
"schema": {
|
|
"description": "Schema identifier for payload",
|
|
"type": "string",
|
|
"enum": ["avalon-core:project-2.1", "pype:project-2.1"],
|
|
"example": "avalon-core:project-2.1"
|
|
},
|
|
"type": {
|
|
"description": "The type of document",
|
|
"type": "string",
|
|
"enum": ["project"],
|
|
"example": "project"
|
|
},
|
|
"parent": {
|
|
"description": "Unique identifier to parent document",
|
|
"example": "592c33475f8c1b064c4d1696"
|
|
},
|
|
"name": {
|
|
"description": "Name of directory",
|
|
"type": "string",
|
|
"pattern": "^[a-zA-Z0-9_.]*$",
|
|
"example": "hulk"
|
|
},
|
|
"data": {
|
|
"description": "Document metadata",
|
|
"type": "object",
|
|
"example": {
|
|
"fps": 24,
|
|
"width": 1920,
|
|
"height": 1080
|
|
}
|
|
},
|
|
"config": {
|
|
"type": "object",
|
|
"description": "Document metadata",
|
|
"example": {
|
|
"schema": "pype:config-1.1",
|
|
"apps": [
|
|
{
|
|
"name": "maya2016",
|
|
"label": "Autodesk Maya 2016"
|
|
},
|
|
{
|
|
"name": "nuke10",
|
|
"label": "The Foundry Nuke 10.0"
|
|
}
|
|
],
|
|
"tasks": {
|
|
"Model": {"short_name": "mdl"},
|
|
"Render": {"short_name": "rnd"},
|
|
"Animate": {"short_name": "anim"},
|
|
"Rig": {"short_name": "rig"},
|
|
"Lookdev": {"short_name": "look"},
|
|
"Layout": {"short_name": "lay"}
|
|
},
|
|
"template": {
|
|
"work":
|
|
"{root}/{project}/{silo}/{asset}/work/{task}/{app}",
|
|
"publish":
|
|
"{root}/{project}/{silo}/{asset}/publish/{subset}/v{version:0>3}/{subset}.{representation}"
|
|
}
|
|
},
|
|
"$ref": "config-1.1.json"
|
|
}
|
|
},
|
|
|
|
"definitions": {}
|
|
}
|