Skip to content

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
organization
  |-> registry (optional)
      |-> ** system **
          |-> privacy declarations

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
system:
  - fides_key: demo_analytics_system
    name: Demo Analytics System
    description: A system used for analyzing customer behaviour.
    system_type: Service
    data_responsibility_title: Controller
    administrating_department: Engineering
    third_country_transfers:
    - USA
    - CAN
    joint_controller:
      name: Dave L. Epper
      address: 1 Acme Pl. New York, NY
      email: controller@acmeinc.com
      phone: +1 555 555 5555
    data_protection_impact_assessment:
      is_required: True
      progress: Complete
      link: https://example.org/analytics_system_data_protection_impact_assessment
    egress:
      - fides_key: another_demo_system
        type: system
        data_categories:
          - user.contact
    ingress:
      - fides_key: yet_another_demo_system
        type: system
        data_categories:
          - user.device.cookie_id
    privacy_declarations:
      - name: Analyze customer behaviour for improvements.
        data_categories:
          - user.contact
          - user.device.cookie_id
        data_use: improve.system
        data_subjects:
          - customer
        data_qualifier: identified_data
        egress:
          - another_demo_system
        ingress:
          - yet_another_demo_system

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
{
  "fides_key": "demo_analytics_system",
  "name": "Demo Analytics System",
  "description": "A system used for analyzing customer behaviour.",
  "system_type": "Service",
  "data_responsibility_title": "Controller",
  "administrating_department": "Engineering",
  "third_country_transfers": ["USA", "CAN"],
  "joint_controller": {
    "name": "Dave L. Epper",
    "address": "1 Acme Pl. New York, NY",
    "email": "controller@acmeinc.com",
    "phone": "+1 555 555 5555"
  },
  "egress": [
    {
      "fides_key": "another_demo_system",
      "type": "system",
      "data_categories": ["user.contact"]
    }
  ],
  "ingress": [
    {
      "fides_key": "yet_another_demo_system",
      "type": "system",
      "data_categories": ["user.device.cookie_id"]
    }
  ],
  "privacy_declarations": [
    {
      "name": "Analyze customer behaviour for improvements.",
      "data_categories": [
        "user.contact",
        "user.device.cookie_id"
      ],
      "data_use": "improve.system",
      "data_subjects": [
        "customer"
      ],
      "data_qualifier": "identified_data",
      "egress": ["another_demo_system"],
      "ingress": ["yet_another_demo_system"]
    }
  ]
}
Back to top