Privado
  • Privado
  • Getting Started With Privado
    • Quick Start
    • Running a Scan
    • Understanding Results
    • Command Reference
    • Understanding privado.json
      • Sources
      • Processing
      • Data Flow
      • Collections
      • Violations
  • Understanding Rules
    • What are Rules?
    • Sources
    • Sinks
      • Understanding Sinks
      • Storages
      • Third Parties
      • Leakages
      • Internal APIs
    • Collections
    • Policies
  • Tutorials
    • How to scan a repository using Privado
  • Customizing Privado
    • Add a new Source
    • Add a new Leakage Sink
    • Add a new Storage Sink
    • Add a new Third Party Sink
    • Add a new Policy
  • ROPA Report
    • Generating ROPA Report
  • Play Store Data Safety Report
    • Generate Play Store Data Safety Report
    • Uploading results to Play Store
  • Extra
    • Configurations
    • Contributing through GitHub
  • About Privado
    • LICENSING
    • Privacy Policy
    • Security
Powered by GitBook
On this page
Edit on GitHub
  1. Getting Started With Privado
  2. Understanding privado.json

Sources

Sources are the starting points of a data element in a data flow. This includes places like user inputs, database queries, or API collections.

A source result consists of the following structure:

{
    "sources": {
        "sourceType": "string",
        "id": "string",
        "name": "string",
        "category": "string",
        "sensitivity": "string",
        "isSensitive": "boolean",
        "tags": [
            {
                "key": "value"
            }
        ]
    }
}

The parameters are explained below:

Field

Description

sourceType

The type of source detected

id

ID of the source

name

Name of the source

category

category of the source

sensitivity

Sensitivity of the source

isSensitive

Boolean indicating if the field is sensitive

tags

Key value pairs to attach further context to the source

PreviousUnderstanding privado.jsonNextProcessing

Last updated 2 years ago