JSON Schema: Structured_date_range

URI Template

Properties

- (string (max length: 255)) begin_date_expression

- (string (max length: 255)) begin_date_standardized

- (string) begin_date_standardized_type

- (string (max length: 255)) end_date_expression

- (string (max length: 255)) end_date_standardized

- (string) end_date_standardized_type

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "properties" => {
      "begin_date_expression" => {"type" => "string", "maxLength" => 255},
      "begin_date_standardized" => {"type" => "string", "maxLength" => 255},
      "begin_date_standardized_type" => {"type" => "string", "dynamic_enum" => "date_standardized_type", "required" => "false"},

      "end_date_expression" => {"type" => "string", "maxLength" => 255},
      "end_date_standardized" => {"type" => "string", "maxLength" => 255},
      "end_date_standardized_type" => {"type" => "string", "dynamic_enum" => "date_standardized_type", "required" => "false"}
    }
  }
}

Plain Text Version