JSON Schema: Structured_date_single
URI Template
Properties
- (string) date_role
- (string (max length: 255)) date_expression
- (string (max length: 255)) date_standardized
- (string) date_standardized_type
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'common/schemas/structured_date_single.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "date_role" => {"type" => "string", "dynamic_enum" => "date_role", "ifmissing" => "error" }, "date_expression" => {"type" => "string", "maxLength" => 255}, "date_standardized" => {"type" => "string", "maxLength" => 255}, "date_standardized_type" => {"type" => "string", "dynamic_enum" => "date_standardized_type", "required" => "false"} } } } |
Plain Text Version