JSON Schema: Collection_management
URI Template
/repositories/:repo_id/collection_management
Properties
- (string) uri
- (object) parent
- (array (JSONModel(:external_id) object)) external_ids
- (string (max length: 255)) processing_hours_per_foot_estimate
- (string (max length: 255)) processing_total_extent
- (string) processing_total_extent_type
- (string (max length: 255)) processing_hours_total
- (string (max length: 65000)) processing_plan
- (string) processing_priority
- (string (max length: 65000)) processing_funding_source
- (string (max length: 65000)) processors
- (boolean) rights_determined
- (string) processing_status
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'common/schemas/collection_management.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "uri" => "/repositories/:repo_id/collection_management", "properties" => { "uri" => {"type" => "string", "required" => false}, "parent" => { "type" => "object", "subtype" => "ref", "readonly" => "true", "properties" => { "ref" => {"type" => [{ "type" => "JSONModel(:resource) uri"}, { "type" => "JSONModel(:digital_object) uri"}, { "type" => "JSONModel(:accession) uri" }]}, "_resolved" => { "type" => "object", "readonly" => "true" } }, }, "external_ids" => {"type" => "array", "items" => {"type" => "JSONModel(:external_id) object"}}, "processing_hours_per_foot_estimate" => {"type" => "string", "maxLength" => 255, "required" => false}, "processing_total_extent" => {"type" => "string", "maxLength" => 255, "required" => false}, "processing_total_extent_type" => {"type" => "string", "required" => false, "dynamic_enum" => "extent_extent_type"}, "processing_hours_total" => {"type" => "string", "maxLength" => 255, "required" => false}, "processing_plan" => {"type" => "string", "maxLength" => 65000, "required" => false}, "processing_priority" => {"type" => "string", "required" => false, "dynamic_enum" => "collection_management_processing_priority"}, "processing_funding_source" => {"type" => "string", "maxLength" => 65000, "required" => false}, "processors" => {"type" => "string", "maxLength" => 65000, "required" => false}, "rights_determined" => {"type" => "boolean", "default" => false}, "processing_status" => {"type" => "string", "required" => false, "dynamic_enum" => "collection_management_processing_status"} }, } } |
Plain Text Version