-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upd: Add endpoints for data attributes and data agreements
Signed-off-by: George J Padayatti <[email protected]>
- Loading branch information
1 parent
8a5f1ef
commit f334887
Showing
16 changed files
with
671 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
type: object | ||
description: "Data attribute contains specifications of exactly what is collected." | ||
x-not-in-database: false | ||
|
||
required: | ||
- name | ||
- description | ||
properties: | ||
id: | ||
type: string | ||
format: "" | ||
example: "" | ||
description: "Data attribute Id" | ||
|
||
version: | ||
type: string | ||
format: "" | ||
example: "" | ||
description: "Version of the data attribute" | ||
|
||
agreementIds: | ||
type: array | ||
items: | ||
type: string | ||
description: "Data agreement Ids" | ||
|
||
name: | ||
type: string | ||
format: "" | ||
example: "" | ||
description: 'Name of the attribute, for instance "name" or "age"' | ||
|
||
description: | ||
type: string | ||
format: "" | ||
example: "" | ||
description: "Description of the attribute" | ||
|
||
sensitivity: | ||
type: boolean | ||
format: "" | ||
example: "" | ||
description: "Sensitivity of data attribute" | ||
|
||
category: | ||
type: string | ||
format: "" | ||
example: "" | ||
description: "Category for data attribute" |
Oops, something went wrong.