JSON Schema: Note_text
URI Template
Properties
- (string (max length: 65000)) content
- (boolean) publish
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'common/schemas/note_text.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "content" => { "type" => "string", "maxLength" => 65000, "ifmissing" => "error", }, "publish" => {"type" => "boolean"}, }, }, } |
Plain Text Version