JSON Schema: Import_job
URI Template
Properties
- (array (string)) filenames
- (string) import_type
- (string) import_events
- (string) import_subjects
- (string) import_repository
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 |
# File 'common/schemas/import_job.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "filenames" => { "type" => "array", "ifmissing" => "error", "minItems" => 1, "items" => { "type" => "string", } }, "import_type" => { "type" => "string", "ifmissing" => "error" }, "import_events" => { "type" => "string" }, "import_subjects" => { "type" => "string" }, "import_repository" => { "type" => "string" } } } } |
Plain Text Version