...
- Determine complexity of allowing for configuration of 001 generation (prefix + starting value)
- Adding the ability to select the desired authority source file at point of creation of new record (so the system would know how to generate the 001 per the configuration)
Approach
- Ability to store authority local files
- Select local authority file on the UI
Ability to store authority local files
New mod-inventory-storage API to store local authority files
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "A collection of Authority local files", "type": "object", "properties": { "authorityLocalFiles": { "description": "List of Authority local files", "id": "authorityLocalFile", "type": "array", "items": { "type": "object", "$ref": "authoritylocalfile.json" } }, "totalRecords": { "description": "Estimated or exact total number of records", "type": "integer" } }, "required": [ "authorityLocalFiles", "totalRecords" ] } |