JSON Schema: Note_outline

URI Template

Properties

- (boolean) publish

- (array (JSONModel(:note_outline_level) object)) levels

View Source


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'common/schemas/note_outline.rb', line 1

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

    "properties" => {

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

      "levels" => {
        "type" => "array",
        "items" => {
          "type" => "JSONModel(:note_outline_level) object",
        }
      },

    },
  },
}

Plain Text Version