JSON Schema: Container_profile

URI Template

/container_profiles

Properties

- (string) uri

- (string) name

- (string) url

- (string) dimension_units

- (string) extent_dimension

- (string) height

- (string) width

- (string) depth

- (string) display_string

View Source


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/container_profile.rb', line 2

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "uri" => "/container_profiles",
    "properties" => {
      "uri" => {"type" => "string", "required" => false},
      
      "name" => {"type" => "string", "ifmissing" => "error"},
      "url" => {"type" => "string", "required" => false},

      "dimension_units" => {"type" => "string", "required" => false,  "dynamic_enum" => "dimension_units"},
      "extent_dimension" => {"type" => "string", "required" => false, "enum" => ["height", "width", "depth"]},

      "height" => {"type" => "string", "required" => false},
      "width" => {"type" => "string", "required" => false},
      "depth" => {"type" => "string", "required" => false},

      "display_string" => {"type" => "string", "readonly" => true},
    },
  },
}

Plain Text Version