JSON Schema: Note_contact_note

URI Template

Properties

- (string (max length: 65000)) date_of_contact

- (string (max length: 65000)) contact_notes

- (boolean) publish

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
# File 'common/schemas/note_contact_note.rb', line 1

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

    "properties" => {
      "date_of_contact" => {
        "type" => "string",
        "maxLength" => 65000,
        "ifmissing" => "error",
      },

      "contact_notes" => {
        "type" => "string",
        "maxLength" => 65000,
        "ifmissing" => "error",
      },

      "publish" => {"type" => "boolean"},
    }
  },
}

Plain Text Version