The text items I am annotating have ids that link them to other information. When Prodigy writes an annotation to its DB is it possible to adjust a recipe to store that id? So the jsonl consumed by the recipe would include that id...would be something like this:
{"text": "some candidate text", "External_ID": 12345}
and get something like:
{"text": "some candidate text", "External_ID": 12345, "label": "Negative", "answer": "accept"}
I imagine I can tweak an existing recipe to take more than the "text" field, strip the "External_ID" field before sending it to a stream...but not sure how I would get the "External_ID" back jsonl before it get written to the prodigy.db. Any thoughts welcome.