JSON Schema: Oai_config
URI Template
/oai_config
Properties
- (string) oai_record_prefix
- (string) oai_admin_email
- (string) oai_repository_name
- (string) repo_set_codes
- (string) sponsor_set_names
- (string) repo_set_description
- (string) sponsor_set_description
- (string) repo_set_name
- (string) sponsor_set_name
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'common/schemas/oai_config.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "uri" => "/oai_config", "properties" => { "oai_record_prefix" => {"type" => "string", "required" => true}, "oai_admin_email" => {"type" => "string", "required" => true}, "oai_repository_name" => {"type" => "string", "required" => true}, "repo_set_codes" => {"type" => "string"}, "sponsor_set_names" => {"type" => "string"}, "repo_set_description" => {"type" => "string"}, "sponsor_set_description" => {"type" => "string"}, "repo_set_name" => {"type" => "string"}, "sponsor_set_name" => {"type" => "string"} }, }, } |
Plain Text Version