addedInput schema / properties / author
Added value: +{
+ "description": "Document author",
+ "type": "string"
+}
addedInput schema / properties / description
Added value: +{
+ "description": "Document description",
+ "type": "string"
+}
removedInput schema / properties / nrOfPages
Removed value: -{
- "description": "Number of pages",
- "exclusiveMinimum": 0,
- "maximum": 9007199254740991,
- "type": "integer"
-}
addedInput schema / properties / pages
Added value: +{
+ "description": "Ordered list of pages in this upload structure",
+ "items": {
+ "properties": {
+ "fileName": {
+ "description": "Page image file name (e.g. \"0001.jpg\")",
+ "type": "string"
+ },
+ "pageNr": {
+ "description": "Page number (1-based)",
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "pageXmlName": {
+ "description": "PAGE XML file name for this page",
+ "type": "string"
+ }
+ },
+ "required": [
+ "fileName",
+ "pageNr"
+ ],
+ "type": "object"
+ },
+ "minItems": 1,
+ "type": "array"
+}
addedInput schema / properties / relatedUploadId
Added value: +{
+ "description": "ID of a related upload",
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+}
changedInput schema / required
Previous value: -[
- "collId",
- "title",
- "nrOfPages"
-]New value: +[
+ "collId",
+ "title",
+ "pages"
+]