System
A System is a model for describing anything that processes data for your organization (applications, services, 3rd party APIs, etc.) and describes how these datasets are used for business functions of instances of your data resources. It contains all 4 privacy attributes (data_category
, data_use
, data_subject
, and data_qualifier
).
1 2 3 4 |
|
Object Structure
fides_key constrained string
A string token of your own invention that uniquely identifies this System. It's your responsibility to ensure that the value is unique across all of your System objects. The value may only contain alphanumeric characters, underscores, and hyphens. ([A-Za-z0-9_.-]
).
name string
A UI-friendly label for the System.
description string
A human-readable description of the System.
system_type string
A required value to describe the type of system being modeled, examples include: Service, Application, Third Party, etc.
data_responsibility_title enum
An attribute to describe the role of responsibility over the personal data, used when exporting to a data map.
Defaults to Controller
if not set explicitly.
Controller
Processor
Sub-Processor
administrating_department string
An optional value to identify the owning department or group of the system within your organization
third_country_transfers constrained string
An optional array to identify any third countries where data is transited to. For consistency purposes, these fields are required to follow the Alpha-3 code set in ISO 3166-1
joint_controller [array]
An optional array of contact information if a Joint Controller exists. This information can also be more granularly stored at the dataset level (name
, address
, email
, phone
).
data_protection_impact_assessment [array]
The array of properties that declare the requirement for and information surrounding a Data Protection Impact Assessment (is_required
, progress
, link
).
Information will be exported as part of the data map or Record of Processing Activites (RoPA)
egress [array]
The resources to which the System sends data.
ingress [array]
The resources from which the System receives data.
privacy_declarations [array]
The array of declarations describing the types of data in your system. This is a list of the privcy attributes (data_category
, data_use
, data_subject
, and data_qualifier
) for each of your systems.
If a dataset is referenced as part of the system, all applicable data categories set on the dataset are treated as part of the system.
organization_fides_key string default: default_organization
The fides key of the Organization to which this System belongs.
Examples
Manifest File
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
Demo manifest file: /fides/demo_resources/demo_system.yml
API
POST /api/v1/system | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|