JSON Schema: Parallel_name_software

URI Template

Properties

- (string (max length: 65000)) software_name

- (string (max length: 65000)) version

- (string (max length: 65000)) manufacturer

View Source


1
2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'common/schemas/parallel_name_software.rb', line 1

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "parent" => "abstract_parallel_name",
    "type" => "object",

    "properties" => {
      "software_name" => {"type" => "string", "maxLength" => 65000, "ifmissing" => "error"},
      "version" => {"type" => "string", "maxLength" => 65000},
      "manufacturer" => {"type" => "string", "maxLength" => 65000},
    },
  },
}

Plain Text Version