JSON Schema: Abstract_agent_relationship
URI Template
Properties
- (string) relationship_uri
- (string) specific_relator
- (string (max length: 65000)) description
- (JSONModel(:structured_date_label) object) dates
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'common/schemas/abstract_agent_relationship.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "subtype" => "ref", "properties" => { "relationship_uri" => {"type" => "string", "required" => false}, "specific_relator" => { "type" => "string", "dynamic_enum" => "agent_relationship_specific_relator" }, "description" => {"type" => "string", "maxLength" => 65000}, "dates" => {"type" => "JSONModel(:structured_date_label) object"} } } } |
Plain Text Version