JSON Schema: Agent_other_agency_codes

URI Template

Properties

- (string) agency_code_type

- (string (max length: 65000)) maintenance_agency

View Source


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

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

    "properties" => {
      "agency_code_type" => {
          "type" => "string",
          "dynamic_enum" => "agency_code_type",
          "required" => false
      },
      "maintenance_agency" => {
          "type" => "string",
          "maxLength" => 65000,
          "ifmissing" => "error",
      },
    }
  }
}

Plain Text Version