JSON Schema: Agent_conventions_declaration
URI Template
Properties
- (string) name_rule
- (string (max length: 65000)) citation
- (string (max length: 65000)) descriptive_note
- (string (max length: 65000)) file_uri
- (string) file_version_xlink_actuate_attribute
- (string) file_version_xlink_show_attribute
- (string (max length: 65000)) xlink_title_attribute
- (string (max length: 65000)) xlink_role_attribute
- (string (max length: 65000)) xlink_arcrole_attribute
- (date-time) last_verified_date
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'common/schemas/agent_conventions_declaration.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "name_rule" => { "type" => "string", "dynamic_enum" => "name_rule", "required" => "false" }, "citation" => {"type" => "string", "maxLength" => 65000, "required" => false}, "descriptive_note" => {"type" => "string", "maxLength" => 65000, "default" => ""}, "file_uri" => {"type" => "string", "maxLength" => 65000}, "file_version_xlink_actuate_attribute" => { "type" => "string", "dynamic_enum" => "file_version_xlink_actuate_attribute", "required" => false }, "file_version_xlink_show_attribute" => { "type" => "string", "dynamic_enum" => "file_version_xlink_show_attribute", "required" => false }, "xlink_title_attribute" => {"type" => "string", "maxLength" => 65000}, "xlink_role_attribute" => {"type" => "string", "maxLength" => 65000}, "xlink_arcrole_attribute" => {"type" => "string", "maxLength" => 65000}, "last_verified_date" => {"type" => "date-time"}, } } } |
Plain Text Version