ayon-core/schema/representation-1.0.json
2021-04-01 10:40:10 +02:00

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"
}
}
}