JSON Schema: Archival_object
URI Template
/repositories/:repo_id/archival_objects
Properties
- (string (max length: 255)) ref_id
- (string (max length: 255)) component_id
- (string) level
- (string (max length: 255)) other_level
- (string) external_ark_url
- (string) import_current_ark
- (array (string)) import_previous_arks
- (string (max length: 8192)) title
- (string) slug
- (boolean) is_slug_auto
- (string (max length: 8192)) display_string
- (boolean) restrictions_apply
- (string (max length: 65000)) repository_processing_note
- (object) parent
- (object) resource
- (array (Object (ref, level, _resolved))) ancestors
- (object) series
- (integer) position
- (array (JSONModel(:instance) object)) instances
- (array ([{"type"=>"JSONModel(:note_bibliography) object"}, {"type"=>"JSONModel(:note_index) object"}, {"type"=>"JSONModel(:note_multipart) object"}, {"type"=>"JSONModel(:note_singlepart) object"}])) notes
- (boolean) has_unpublished_ancestor
- (JSONModel(:ark_name) object) ark_name
- (array (Object (ref, _resolved))) accession_links
View Source
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'common/schemas/archival_object.rb', line 3 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "parent" => "abstract_archival_object", "uri" => "/repositories/:repo_id/archival_objects", "properties" => { "ref_id" => {"type" => "string", "maxLength" => 255, "pattern" => "\\A[a-zA-Z0-9\\-_:\\.]*\\z"}, "component_id" => {"type" => "string", "maxLength" => 255, "required" => false, "default" => ""}, "level" => {"type" => "string", "ifmissing" => "error", "dynamic_enum" => "archival_record_level"}, "other_level" => {"type" => "string", "maxLength" => 255}, "external_ark_url" => {"type" => "string", "required" => false}, "import_current_ark" => {"type" => "string"}, "import_previous_arks" => { "type" => "array", "items" => { "type" => "string", } }, "title" => {"type" => "string", "maxLength" => 8192, "ifmissing" => nil}, "slug" => {"type" => "string"}, "is_slug_auto" => {"type" => "boolean", "default" => true}, "display_string" => {"type" => "string", "maxLength" => 8192, "readonly" => true}, "restrictions_apply" => {"type" => "boolean", "default" => false}, "repository_processing_note" => {"type" => "string", "maxLength" => 65000}, "parent" => { "type" => "object", "subtype" => "ref", "properties" => { "ref" => {"type" => "JSONModel(:archival_object) uri"}, "_resolved" => { "type" => "object", "readonly" => "true" } } }, "resource" => { "type" => "object", "subtype" => "ref", "properties" => { "ref" => {"type" => "JSONModel(:resource) uri"}, "_resolved" => { "type" => "object", "readonly" => "true" } }, "ifmissing" => "error" }, "ancestors" => { "type" => "array", "items" => { "type" => "object", "subtype" => "ref", "properties" => { "ref" => {"type" => [{"type" => "JSONModel(:resource) uri"}, {"type" => "JSONModel(:archival_object) uri"}]}, "level" => {"type" => "string", "maxLength" => 255}, "_resolved" => { "type" => "object", "readonly" => "true" } } } }, "series" => { "type" => "object", "subtype" => "ref", "properties" => { "ref" => {"type" => "JSONModel(:archival_object) uri"}, "_resolved" => { "type" => "object", "readonly" => "true" } } }, "position" => {"type" => "integer", "required" => false}, "instances" => {"type" => "array", "items" => {"type" => "JSONModel(:instance) object"}}, "notes" => { "type" => "array", "items" => {"type" => [{"type" => "JSONModel(:note_bibliography) object"}, {"type" => "JSONModel(:note_index) object"}, {"type" => "JSONModel(:note_multipart) object"}, {"type" => "JSONModel(:note_singlepart) object"}]}, }, "has_unpublished_ancestor" => {"type" => "boolean", "readonly" => "true"}, "ark_name" => { "type" => "JSONModel(:ark_name) object", "readonly" => true, "required" => false }, "accession_links" => { "type" => "array", "items" => { "type" => "object", "subtype" => "ref", "properties" => { "ref" => { "type" => [{"type" => "JSONModel(:accession) uri"}], "ifmissing" => "error" }, "_resolved" => { "type" => "object", "readonly" => "true" } } } } }, }, } |
Plain Text Version