-
Notifications
You must be signed in to change notification settings - Fork 46
Description
Context
In Senegal, as part of a public procurement procedure, there is an important activity which consists in controlling the procedures. This activity enables the control body to give a no-objection opinion on the key stages of the procedure (examination of the tender documents, opinion on the bid evaluation report, opinion on the draft contract).
Thus, we propose an extension fields to support the control process (RequestNooTender, RequestNooTenderItem). This extension will to facilitate tracking of information relating to procedure control activities.
List of codes for request types
ETD: examination of tender documents ;
RERPA: review of evaluation report and provisional award proposals;
LTRDC: legal and technical review of draft contract.
Model
When a contracting authority refers a matter to the inspection body for an opinion, the inspection body responds by attaching a document, a description, the response and information on the dates of referral and response.
For a given contract, it is possible to have several referrals to the inspection body (RequestNooTender) Each referral is materialized by RequestNooTenderItem.
- RequestNooTender {object}
- ocid (string, integer)
- controls (string, integer)
- Controls [array]
- RequestNooTenderItem {object}
• ocid (string, integer)
• id (string, integer)
• description (string)
• typerequest (string) (codelist)
• opinion {object}
o $ref : #/definitions/Document
o datesubmit (Format: date-time) (string)
o daterend (Format: date-time) (string)
For the document, we propose to add two additional fields: the value of the document's hash key and its signature for use in Blockchain.
{
"definitions": {
"Document": {
"properties": {
"ipfshash": {
"title": "Hash of document",
"description": "Hashof document",
"type": [
"string",
"null"
]
},
"signature": {
"title": "Signature",
"description": "digital signature",
"type": [
"string",
"null"
]
}
}
}
}
}