JSON Schema: Ark_name
URI Template
Properties
- (string) current
- (boolean) current_is_external
- (array (string)) previous
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'common/schemas/ark_name.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "current" => {"type" => "string", "required" => false}, "current_is_external" => {"type" => "boolean", "required" => false}, "previous" => { "type" => "array", "items" => { "type" => "string" } } } } } |
Plain Text Version