UNCLASSIFIED - NO CUI

Update Home authored by Richard Boone's avatar Richard Boone
......@@ -128,66 +128,6 @@ For example, if an evaluation is created to develop a class that implements a si
This section will describe the knowledge, skill, ability, and task JSON files. These files will contain every possible KSA&T for every work role/specialization in the organization. Each KSA&T will also contain KSA&T to KSA&T dependency information and general training and evaluation material information.
Field information
- "KSAT_ID": This is a unique identifier of the KSA
- "description": this is the actual KSA
- "parent": this is a list of parent KSAs that directly relate to this KSA
- "topic": this is the subject of the material needed to learn
- "requirement_src": this is a list of all documents or individuals that have started this KSA a requirement
- "requirement_owner": this is an individual or organization that is responsible for setting this requirement
- "comments": this is any other information that needs to be captured for better understanding of the requirement, etc.
- "training": this is a list of training, proficiency of specified training, domain the training is located on, and a link to the training that relate the requirement set in the description
- "eval": this is a list of evaluation questions, proficiency of specified questions, domain the eval is located on, and a link to the eval question study material that relate to the requirement description
```json
[
{
"_id": "KSAT_ID",
"description": "",
"parents": [],
"topic": "",
"requirement_src": [],
"requirement_owner": "",
"comments": "",
"training": [
{
"_id": "TRN_ID",
"name": "NAME",
"proficiency": "PROF_ID",
"network": "NETWORK",
"url": "url"
}
...
],
"eval": [
{
"_id": "EVL_ID",
"name": "NAME",
"proficiency": "PROF_ID",
"network": "NETWORK",
"url": "url"
}
...
],
"work-roles": {
{
"_id": "WR_SPEC_ID",
"proficiency": "PROF_ID",
},
...
},
"specializations": {
{
"_id": "WR_SPEC_ID",
"proficiency": "PROF_ID",
},
...
}
},
...
]
```
## WORK-ROLES and SPECIALIZATIONS JSON Files
......
......