-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstd_dcaProperty.json
21 lines (21 loc) · 952 Bytes
/
std_dcaProperty.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "std:dcaProperty",
"title": "Standart DCA Property",
"description": "This extension aims to allow data to be deleted if the DCA has a property. The properties are generically encoded as strings. So you can give a DCA for example the property that it is part of a department or other kind of group.",
"$comment": "This extension has potential to produce unexpected behavior. The extension depends on self-selected and coded properties. It is recommended to code the properties uniquely. In a global context, the properties should be bound to IRIs that you control. Otherwise, there is potential for miscommunication.",
"type": "object",
"unevaluatedProperties": false,
"required": [
"property",
"has"
],
"properties": {
"property": {
"type": "string"
},
"has": {
"type": "boolean"
}
}
}