JSON Schema: External_document

URI Template

Properties

- (string (max length: 16384)) title

- (string (max length: 16384)) location

- (boolean) publish

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "properties" => {
      "title" => {"type" => "string", "maxLength" => 16384, "ifmissing" => "error", "minLength" => 1},
      "location" => {"type" => "string", "maxLength" => 16384, "ifmissing" => "error", "default" => ""},
      "publish" => {"type" => "boolean"},
    },
  },
}

Plain Text Version