mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
28 lines
592 B
JSON
28 lines
592 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "openpype:representation-1.0",
|
|
"description": "The inverse of an instance",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"required": [
|
|
"schema",
|
|
"format",
|
|
"path"
|
|
],
|
|
|
|
"properties": {
|
|
"schema": {"type": "string"},
|
|
"format": {
|
|
"description": "File extension, including '.'",
|
|
"type": "string"
|
|
},
|
|
"path": {
|
|
"description": "Unformatted path to version.",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|