Currently we have statement fields which are used in Issue, Offer, and Contract.
stm_title
stm_body
stm_issue_uuid
stm_tracker_uuid
stm_status
The statement field names are the same across all classes, but the purpose differs:
Issue - holds the source data
Offer and Contract - query values used to match and evaluate
For our field-names to be more intention revealing, probably it would be good to either:
- rename the fields on
Issue (eg stm_title -> src_title)
- rename the fields on
Offer and Contract (eg stm_title -> match_title)
Currently we have
statementfields which are used inIssue,Offer, andContract.stm_titlestm_bodystm_issue_uuidstm_tracker_uuidstm_statusThe statement field names are the same across all classes, but the purpose differs:
Issue- holds the source dataOfferandContract- query values used to match and evaluateFor our field-names to be more intention revealing, probably it would be good to either:
Issue(egstm_title->src_title)OfferandContract(egstm_title->match_title)