JSON Schema: Agent_record_identifier
URI Template
Properties
- (boolean) primary_identifier
- (string (max length: 65000)) record_identifier
- (string) source
- (string) identifier_type
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 |
# File 'common/schemas/agent_record_identifier.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "primary_identifier" => {"type" => "boolean", "ifmissing" => "error"}, "record_identifier" => { "type" => "string", "maxLength" => 65000, "ifmissing" => "error" }, "source" => { "type" => "string", "dynamic_enum" => "name_source", "ifmissing" => "error" }, "identifier_type" => { "type" => "string", "dynamic_enum" => "identifier_type", "required" => false }, } } } |
Plain Text Version