JSON Schema: Note_index_item
URI Template
Properties
- (string (max length: 65000)) value
- (string) type
- (string (max length: 65000)) reference
- (string (max length: 65000)) reference_text
- (object) reference_ref
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'common/schemas/note_index_item.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "value" => {"type" => "string", "ifmissing" => "error", "maxLength" => 65000}, "type" => {"type" => "string", "ifmissing" => "error", "dynamic_enum" => "note_index_item_type"}, "reference" => {"type" => "string", "maxLength" => 65000}, "reference_text" => {"type" => "string", "maxLength" => 65000}, "reference_ref" => { "type" => "object", "subtype" => "ref", "properties" => { "ref" => {"type" => "string", "readonly" => true}, "_resolved" => { "type" => "object", "readonly" => "true" } } } }, } } |
Plain Text Version