JSON Schema: Classification
URI Template
/repositories/:repo_id/classifications
Properties
- (boolean) has_classification_terms
- (string) slug
- (boolean) is_slug_auto
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'common/schemas/classification.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "parent" => "abstract_classification", "uri" => "/repositories/:repo_id/classifications", "properties" => { "has_classification_terms" => {"type" => "boolean", "readonly" => true}, "slug" => {"type" => "string"}, "is_slug_auto" => {"type" => "boolean", "default" => true} }, }, } |
Plain Text Version