Regulations
Last updated
GET https://api.didomi.io/compliance/v1/regulations?$search[releaseStatus]=stable{
"data": [
{
"id": "gdpr",
"archived": false,
"geos": [
{
"country": {
"id": "FR",
"name": "France"
},
"region": {
"id": "*",
"name": "All"
}
},
...
],
"name": "General Data Protection Regulation",
"frameworks": [
"iab"
],
"platforms": [
"amp",
"app",
"ctv",
"web"
],
"regulation_type": "optin",
"release_status": "stable",
},
{
"id": "cpa",
"archived": false,
"geos": [
{
"country": {
"id": "US",
"name": "United States"
},
"region": {
"id": "CO",
"name": "Colorado"
}
}
],
"name": "Colorado Privacy Act",
"release_status": "beta"
},
...
]
}
{
/**
* A unique identifier
*/
"id": "String",
/**
* Whether this regulation is archived or not
*/
"archived": Boolean,
/**
* Regulations geolocations that the regulation
* is associated with (jurisdiction)
*/
"geos": [
{
"country": {
/**
* Contains the 2-letter ISO 3166-1
* alpha-2 country codes
*/
"id": "String",
/**
* Country name
*/
"name": "String"
},
"region": {
/**
* Contains a code (up to three characters)
* that represent the viewer's region.
* The region is the first-level subdivision
* (the broadest or least specific)
* of the ISO 3166-2 code.
*/
"id": "String",
/**
* Region name that corresponds to the code
*/
"name": "String"
}
}
],
/**
* The name of the regulation
*/
"name": "String",
/**
* The frameworks supported by the regulation
*/
"frameworks": [],
/**
* The platforms supported by the regulation
* Are supported: amp, app, ctv, web
*/
"platforms": [
"String"
],
/**
* The regulation type associated with the group
* Possible values: disclose, mixed, optin, optout
*/
"regulation_type": "String",
/**
* The release status of the regulation.
* Only regulations in a stable status
* are intended to be used in production.
* Possible status: stable, release-candidate, beta, alpha
*/
"release_status": "String",
/**
* User rights linked to the regulation
*/
"user_rights": []
},