JSON Schema: Agent_identifier

URI Template

Properties

- (string (max length: 65000)) entity_identifier

- (string) identifier_type

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_identifier.rb', line 1

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

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

Plain Text Version