JSON Schema: Name_form

URI Template

/agents/:agent_id/name_forms

Properties

- (string) uri

- (string) kind

- (string) sort_name

View Source


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

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

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

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

Plain Text Version