JSON Schema: Classification_tree
URI Template
/repositories/:repo_id/classifications/:classification_id/tree
Properties
- (string (max length: 255)) identifier
- (array (JSONModel(:classification_tree) object)) children
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'common/schemas/classification_tree.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "uri" => "/repositories/:repo_id/classifications/:classification_id/tree", "parent" => "record_tree", "properties" => { "identifier" => {"type" => "string", "maxLength" => 255}, "children" => { "type" => "array", "additionalItems" => false, "items" => { "type" => "JSONModel(:classification_tree) object" } } }, }, } |
Plain Text Version