mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
35 lines
No EOL
678 B
JSON
35 lines
No EOL
678 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "pype:asset-1.0",
|
|
"description": "A unit of data",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"required": [
|
|
"schema",
|
|
"name",
|
|
"subsets"
|
|
],
|
|
|
|
"properties": {
|
|
"schema": {
|
|
"description": "Schema identifier for payload",
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "Name of directory",
|
|
"type": "string"
|
|
},
|
|
"subsets": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "subset.json"
|
|
}
|
|
}
|
|
},
|
|
|
|
"definitions": {}
|
|
} |