JSON Schema: Note_definedlist
URI Template
Properties
- (string (max length: 16384)) title
- (boolean) publish
- (array (Object (label, value))) items
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_definedlist.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "title" => {"type" => "string", "maxLength" => 16384}, "publish" => {"type" => "boolean"}, "items" => { "type" => "array", "items" => { "type" => "object", "properties" => { "label" => {"type" => "string", "ifmissing" => "error", "maxLength" => 65000}, "value" => {"type" => "string", "ifmissing" => "error", "maxLength" => 65000} } } } }, }, } |
Plain Text Version