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