JSON Schema: Collection_management

URI Template

/repositories/:repo_id/collection_management

Properties

- (string) uri

- (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

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
# 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},

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

    },
  }
}

Plain Text Version