JSON Schema: Note_citation

URI Template

Properties

- (array (string)) content

- (object) xlink

View Source


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'common/schemas/note_citation.rb', line 1

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

    "properties" => {

      "content" => {
        "type" => "array",
        "items" => {"type" => "string", "maxLength" => 65000},
        "minItems" => 1,
        "ifmissing" => "error",
      },

      "xlink" => {
        "type" => "object",
        "properties" => {
          "actuate" => {"type" => "string", "maxLength" => 65000},
          "arcrole" => {"type" => "string", "maxLength" => 65000},
          "href" => {"type" => "string", "maxLength" => 65000},
          "role" => {"type" => "string", "maxLength" => 65000},
          "show" => {"type" => "string", "maxLength" => 65000},
          "title" => {"type" => "string", "maxLength" => 16384},
          "type" => {"type" => "string", "maxLength" => 65000},
        }
      }

    },
  },
}

Plain Text Version