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) stacking_limit

- (string) display_string

- (string) notes

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
25
26
27
28
# 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", "ifmissing" => "error", "dynamic_enum" => "dimension_units"},
      "extent_dimension" => {"type" => "string", "ifmissing" => "error", "enum" => ["height", "width", "depth"]},

      "height" => {"type" => "string", "ifmissing" => "error"},
      "width" => {"type" => "string",  "ifmissing" => "error"},
      "depth" => {"type" => "string",  "ifmissing" => "error"},

      "stacking_limit" => {"type" => "string", "required" => false},

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

      "notes" => {"type" => "string"},
    },
  },
}

Plain Text Version