JSON Schema: Active_edits

URI Template

/update_monitor

Properties

- (string) uri

- (array (Object (user, uri, time))) active_edits

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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "uri" => "/update_monitor",
    "type" => "object",
    "properties" => {
      "uri" => {"type" => "string", "required" => false},

      "active_edits" => {
        "type" => "array",
        "items" => {
          "type" => "object",
          "properties" => {
            "user" => {"type" => "string", "maxLength" => 255, "ifmissing" => "error"},
            "uri" => {"type" => "string", "maxLength" => 255, "ifmissing" => "error"},
            "time" => {"type" => "string", "maxLength" => 255, "ifmissing" => "error"},
          }
        }
      }
    },
  },
}

Plain Text Version