JSON Schema: Parallel_name_corporate_entity

URI Template

Properties

- (string (max length: 65000)) primary_name

- (string (max length: 65000)) subordinate_name_1

- (string (max length: 65000)) subordinate_name_2

- (string (max length: 255)) number

- (string (max length: 65000)) location

- (boolean) conference_meeting

- (boolean) jurisdiction

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "parent" => "abstract_parallel_name",
    "type" => "object",

    "properties" => {
      "primary_name" => {"type" => "string", "maxLength" => 65000, "ifmissing" => "error"},
      "subordinate_name_1" => {"type" => "string", "maxLength" => 65000},
      "subordinate_name_2" => {"type" => "string", "maxLength" => 65000},
      "number" => {"type" => "string", "maxLength" => 255},
      "location" => {"type" => "string", "maxLength" => 65000},
      "conference_meeting" => {"type" => "boolean", "default" => false},
      "jurisdiction" => {"type" => "boolean", "default" => false},
    },
  },
}

Plain Text Version