ayon-core/schema/representation-1.0.json
2020-01-31 19:54:05 +01:00

28 lines
588 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "pype: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"
}
}
}