JSON Schema: Abstract_note

URI Template

Properties

- (string (max length: 65000)) label

- (boolean) publish

- (string (max length: 255)) persistent_id

- (string (max length: 65000)) ingest_problem

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "properties" => {
      "label" => {"type" => "string", "maxLength" => 65000},
      "publish" => {"type" => "boolean"},
      "persistent_id" => {"type" => "string", "maxLength" => 255},
      "ingest_problem" => {"type" => "string", "maxLength" => 65000},
    },
  },
}

Plain Text Version