You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/routes/docs/advanced/security/hipaa/+page.markdoc
+22-6Lines changed: 22 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -10,19 +10,35 @@ HIPAA is an important regulation that protects patients' health data from being
10
10
If you're building apps that handle information that is considered [PHI (Personal Health Information)](https://privacyruleandresearch.nih.gov/pr_07.asp)
11
11
for an U.S. user base, data must be stored in a HIPAA-compliant environment.
12
12
13
-
To attain HIPAA compliance, we've taken extensive measures, ensuring that our practices align with the highest data protection standards.
13
+
To attain HIPAA compliance, we've taken extensive measures, ensuring that our practices align with the highest data protection standards.
14
14
We have implemented robust measures to safeguard personal information, updating our policies, procedures, and infrastructure to meet the strict requirements of HIPAA regulations.
15
15
16
16
- A strict data backup schedule.
17
17
- An extended business continuity plan.
18
18
- Data retention rights for individuals as outlined in our [Privacy Policy](https://appwrite.io/privacy).
19
19
- Intrusion detection and penetration testing.
20
-
- Encryption of data transmitted between Appwrite and users using transport layer security (TLS) and HTTP strict Transport Security,
20
+
- Encryption of data transmitted between Appwrite and users using Transport Layer Security (TLS) and HTTP Strict Transport Security,
21
21
ensuring confidentiality both at rest and during transmission.
22
-
- Access to environments containing customer data is strictly controlled,
23
-
requiring authentication and authorization through multi-factor authentication (MFA).
22
+
- Access to environments containing customer data is strictly controlled,
23
+
requiring authentication and authorization through multi-factor authentication (MFA).
24
24
25
-
Appwrite safeguards personal information to the same extent it protects its own, complying with relevant privacy laws and regulations in the jurisdictions where its services are offered.
25
+
Appwrite safeguards personal information to the same extent it protects its own, complying with relevant privacy laws and regulations in the jurisdictions where its services are offered.
26
26
27
-
Please note that while Appwrite Cloud serves as a HIPAA-compliant platform to handle data,
27
+
## Data retention
28
+
29
+
Appwrite gives you full control over your data lifecycle. By default, Appwrite stores user and project data until you explicitly delete it. There's no automatic purging or TTL unless you configure it that way in your application logic or functions.
30
+
31
+
If you're handling PHI (Protected Health Information), you can implement custom data retention policies using Appwrite Functions or database triggers to meet HIPAA requirements.
32
+
33
+
## Log access and retrieval
34
+
35
+
Appwrite provides access to different types of logs depending on the context:
36
+
37
+
- **API usage logs**: These are turned off by default, we can give you samples of the data on requests to help debug and troubleshoot issues. If you'd like to have those turned on constantly and transmitted to you or stored on a bucket, this is a separate addon we can provide.
38
+
39
+
- **Function logs**: Each serverless function or hosted sites includes stdout and stderr logs you can access per execution. Those are retained for different periods per plan.
40
+
41
+
- **Audit logs**: For users or teams with compliance needs, we provide structured audit logs covering authentication events, permission changes, and other relevant activities directly on your console, under an activity tab in the different products the platform offers. Those are retained for different periods per plan.
42
+
43
+
Please note that while Appwrite Cloud serves as a HIPAA-compliant platform to handle data,
28
44
it is the responsibility of developers to ensure that their application is also compliant with HIPAA regulations.
0 commit comments