JSON Schema: Name_software
URI Template
Properties
- (string (max length: 65000)) software_name
- (string (max length: 65000)) version
- (string (max length: 65000)) manufacturer
- (array (JSONModel(:parallel_name_software) object)) parallel_names
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'common/schemas/name_software.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "parent" => "abstract_name", "type" => "object", "properties" => { "software_name" => {"type" => "string", "maxLength" => 65000, "ifmissing" => "error"}, "version" => {"type" => "string", "maxLength" => 65000}, "manufacturer" => {"type" => "string", "maxLength" => 65000}, "parallel_names" => {"type" => "array", "items" => {"type" => "JSONModel(:parallel_name_software) object"}}, }, }, } |
Plain Text Version