mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
59 lines
No EOL
1.7 KiB
JSON
59 lines
No EOL
1.7 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "pype:container-2.0",
|
|
"description": "A loaded asset",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"required": [
|
|
"schema",
|
|
"id",
|
|
"objectName",
|
|
"name",
|
|
"namespace",
|
|
"loader",
|
|
"representation"
|
|
],
|
|
"properties": {
|
|
"schema": {
|
|
"description": "Schema identifier for payload",
|
|
"type": "string",
|
|
"enum": ["avalon-core:container-2.0", "pype:container-2.0"],
|
|
"example": "pype:container-2.0"
|
|
},
|
|
"id": {
|
|
"description": "Identifier for finding object in host",
|
|
"type": "string",
|
|
"enum": ["pyblish.avalon.container"],
|
|
"example": "pyblish.avalon.container"
|
|
},
|
|
"objectName": {
|
|
"description": "Name of internal object, such as the objectSet in Maya.",
|
|
"type": "string",
|
|
"example": "Bruce_:rigDefault_CON"
|
|
},
|
|
"loader": {
|
|
"description": "Name of loader plug-in used to produce this container",
|
|
"type": "string",
|
|
"example": "ModelLoader"
|
|
},
|
|
"name": {
|
|
"description": "Internal object name of container in application",
|
|
"type": "string",
|
|
"example": "modelDefault_01"
|
|
},
|
|
"namespace": {
|
|
"description": "Internal namespace of container in application",
|
|
"type": "string",
|
|
"example": "Bruce_"
|
|
},
|
|
"representation": {
|
|
"description": "Unique id of representation in database",
|
|
"type": "string",
|
|
"example": "59523f355f8c1b5f6c5e8348"
|
|
}
|
|
}
|
|
} |