JSON Schema: Rde_template

URI Template

/repositories/:repo_id/rde_templates

Properties

- (string) uri

- (string) name

- (string) record_type

- (array (string)) order

- (array (string)) visible

- (object) defaults

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "uri" => "/repositories/:repo_id/rde_templates",
    "properties" => {
      "uri" => {"type" => "string", "required" => false},
      "name" => {"type" => "string", "ifmissing" => "error"},
      "record_type" => {"type" => "string", "ifmissing" => "error", "enum" => ['archival_object', 'digital_object_component']},
      "order" => {"type" => "array", "items" => {"type" => "string"}},
      "visible" => {"type" => "array", "items" => {"type" => "string"}},
      "defaults" => {"type" => "object"},
    },
  },
}

Plain Text Version