JSON Schema: Agent_alternate_set
URI Template
Properties
- (string (max length: 65000)) set_component
- (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 |
# File 'common/schemas/agent_alternate_set.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "set_component" => {"type" => "string", "maxLength" => 65000}, "descriptive_note" => {"type" => "string", "maxLength" => 65000}, "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", "required" => false }, } } } |
Plain Text Version