This table associates an indicator with a reportingperiod. It corresponds to the indicator value in a given period. The primary key is formed by indicatorid and reportingperiodid.
| Name | Type | Not Null | Primary Key | Foreign Key | Remarks |
| :——— | :——— | :————- | :—————- | :—————- | :———— |
| indicatorid | integer | X | X | indicator(indicatorid) | This is a foreign key to the table indicator. |
| reportingperiodid | integer | X | X | reportingperiod(reportingperiodid) | This is a foreign key to the table reportingperiod. |
| value | double precision | X | This is the value of the indicator at the given period. |