@magda/registry-aspects
Version:
Common aspects for use with the registry.
33 lines (32 loc) • 1.17 kB
JSON
{
"$schema": "http://json-schema.org/schema#",
"title": "Information Security Aspect",
"description": "Metadata about information security",
"type": "object",
"properties": {
"classification": {
"title": "Security classification. See https://www.protectivesecurity.gov.au/information/sensitive-classified-information/Pages/default.aspx for more details.",
"type": "string",
"enum": [
"UNOFFICIAL",
"OFFICIAL",
"OFFICIAL:SENSITIVE",
"PROTECTED",
"SECRET",
"TOP SECRET"
]
},
"disseminationLimits": {
"title": "Any sensitivity DLMs (dissemination limiting marker). See https://www.protectivesecurity.gov.au/information/sensitive-classified-information/Pages/default.aspx for more details.",
"type": "array",
"items": {
"type": "string",
"enum": [
"LEGAL PRIVILEGE",
"LEGISLATIVE SECRECY",
"PERSONAL PRIVACY"
]
}
}
}
}