JSON Schema: Custom_report_template

URI Template

/repositories/:repo_id/custom_report_templates

Properties

- (string) uri

- (string) name

- (string (max length: 255)) description

- (string (max length: 65000)) data

- (integer) limit

View Source


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

{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "uri" => "/repositories/:repo_id/custom_report_templates",
    "properties" => {
      "uri" => {"type" => "string", "required" => false},

      "name" => {"type" => "string", "ifmissing" => "error"},
      "description" => {"type" => "string", "maxLength" => 255},
      "data" => {"type" => "string", "ifmissing" => "error", "maxLength" => 65000},
      "limit" => {"type" => "integer", "ifmissing" => "error", "default" => 100}
    },
  },
}

Plain Text Version