JSON Schema: Find_and_replace_job
URI Template
Properties
- (string) find
- (string) replace
- (string) record_type
- (string) property
- (string) base_record_uri
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 |
# File 'common/schemas/find_and_replace_job.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "find" => { "type" => "string", "ifmissing" => "error" }, "replace" => { "type" => "string", "ifmissing" => "error" }, "record_type" => { "type" => "string", "ifmissing" => "error" }, "property" => { "type" => "string", "ifmissing" => "error" }, "base_record_uri" => { "type" => "string", "ifmissing" => "error" } } } } |
Plain Text Version