JSON Schema: Location_batch_update

URI Template

Properties

- (string (max length: 255)) building

- (array (JSONModel(:location) uri)) record_uris

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "parent" => "location",
    "properties" => {
      "building" => {"type" => "string", "maxLength" => 255, "minLength" => 1, "ifmissing" => nil},
      "record_uris" => {
        "type" => "array",
        "items" => {
          "type" => "JSONModel(:location) uri"
        }
      }

    },
  },
}

Plain Text Version