JSON Schema: Enumeration_value

URI Template

/config/enumeration_values

Properties

- (string) uri

- (string (max length: 255)) value

- (integer) position

- (boolean) suppressed

View Source


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

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

      "value" => {"type" => "string", "maxLength" => 255, "ifmissing" => "error"},
      "position" => {"type" => "integer" },
      "suppressed" => {"type" => "boolean" }
    }
  }
}

Plain Text Version