JSON Schema: Location_profile

URI Template

/location_profiles

Properties

- (string) uri

- (string) name

- (string) display_string

- (string) dimension_units

- (string) height

- (string) width

- (string) depth

View Source


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'common/schemas/location_profile.rb', line 1

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

      "name" => {"type" => "string", "ifmissing" => "error"},

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

      "dimension_units" => {"type" => "string", "dynamic_enum" => "dimension_units"},

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

Plain Text Version