This table corresponds associates a privacy group to a profile.
| Name | Type | Not Null | Primary Key | Foreign Key | Remarks |
| :——— | :——— | :————- | :—————- | :—————- | :———— |
| id_permission | integer | X | X | This is the primary key of the table. | |
| permission | character varying(255) | X | It corresponds to a java enumeration (NONE, READ or WRITE) and defines the access right to the resource related in the privacy group. | ||
| id_privacy_group | integer | X | privacy\_group(id_privacy_group) | This is a foreign key to the table privacy_group. | |
| id_profile | integer | X | profile(id_profile) | This is a foreign key to the table profile. |