JSON Schema: Agent_record_control
URI Template
Properties
- (string) maintenance_status
- (string) publication_status
- (string) romanization
- (string) government_agency_type
- (string) reference_evaluation
- (string) name_type
- (string) level_of_detail
- (string) modified_record
- (string) cataloging_source
- (string) language
- (string) script
- (string (max length: 65000)) language_note
- (string (max length: 65000)) maintenance_agency
- (string (max length: 65000)) agency_name
- (string (max length: 65000)) maintenance_agency_note
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'common/schemas/agent_record_control.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "maintenance_status" => { "type" => "string", "dynamic_enum" => "maintenance_status", "ifmissing" => "error" }, "publication_status" => { "type" => "string", "dynamic_enum" => "publication_status", "required" => false }, "romanization" => { "type" => "string", "dynamic_enum" => "romanization", "required" => false }, "government_agency_type" => { "type" => "string", "dynamic_enum" => "government_agency_type", "required" => false }, "reference_evaluation" => { "type" => "string", "dynamic_enum" => "reference_evaluation", "required" => false }, "name_type" => { "type" => "string", "dynamic_enum" => "name_type", "required" => false }, "level_of_detail" => { "type" => "string", "dynamic_enum" => "level_of_detail", "required" => false }, "modified_record" => { "type" => "string", "dynamic_enum" => "modified_record", "required" => false }, "cataloging_source" => { "type" => "string", "dynamic_enum" => "cataloging_source", "required" => false }, "language" => { "type" => "string", "dynamic_enum" => "language_iso639_2", "required" => false }, "script" => { "type" => "string", "dynamic_enum" => "script_iso15924", "required" => false }, "language_note" => {"type" => "string", "maxLength" => 65000}, "maintenance_agency" => {"type" => "string", "maxLength" => 65000}, "agency_name" => {"type" => "string", "maxLength" => 65000}, "maintenance_agency_note" => {"type" => "string", "maxLength" => 65000}, } } } |
Plain Text Version