archivesspace/archivesspace

View on GitHub
common/schemas/note_abstract.rb

Summary

Maintainability
A
15 mins
Test Coverage
{
  :schema => {
    "$schema" => "http://www.archivesspace.org/archivesspace.json",
    "version" => 1,
    "type" => "object",
    "parent" => "abstract_note",

    "properties" => {
      "content" => {
        "type" => "array",
        "items" => {"type" => "string", "maxLength" => 65000},
        "minItems" => 1,
        "ifmissing" => "error",
      },
    },
  },
}