JSON Schema: Bulk_import_job
URI Template
Properties
- (string) resource_id
- (string) filename
- (string) load_type
- (string) content_type
- (string) format
- (string) only_validate
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 |
# File 'common/schemas/bulk_import_job.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "resource_id" => { "type" => "string", "ifmissing" => "error", }, "filename" => { "type" => "string", "ifmissing" => "error", }, "load_type" => { "type" => "string", "ifmissing" => "error", }, "content_type" => { "type" => "string", "ifmissing" => "error", }, "format" => { "type" => "string", "ifmissing" => "error", }, "only_validate" => { "type" => "string", }, }, }, } |
Plain Text Version