-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make reconciliation score optional (#133)
* Make reconciliation score optional Closes #127. * Add more notes about optional scoring * Improve explanation on optional score Co-authored-by: Fabian Steeg <steeg@hbz-nrw.de> --------- Co-authored-by: Fabian Steeg <steeg@hbz-nrw.de>
- Loading branch information
Showing
3 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
draft/examples/reconciliation-result-batch/valid/minimal.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"results": [ | ||
{ | ||
"candidates": [ | ||
{ | ||
"id": "120333937", | ||
"name": "Urbaniak, Regina" | ||
}, | ||
{ | ||
"id": "1127147390", | ||
"name": "Urbaniak, Jan" | ||
} | ||
] | ||
}, | ||
{ | ||
"candidates": [ | ||
{ | ||
"id": "123064325", | ||
"name": "Schwanhold, Ernst" | ||
}, | ||
{ | ||
"id": "116362988X", | ||
"name": "Schwanhold, Nadine" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,8 +101,7 @@ | |
}, | ||
"required": [ | ||
"id", | ||
"name", | ||
"score" | ||
"name" | ||
] | ||
} | ||
} | ||
|