diff --git a/regolith/exemplars.json b/regolith/exemplars.json index 9f45c1a4b..1c0cd4c8e 100644 --- a/regolith/exemplars.json +++ b/regolith/exemplars.json @@ -61,12 +61,12 @@ "title": "My Vision", "year": 2015 }, - "packages": { - "_id": "unique-package-name", + "software": { + "_id": "unique-package-id", "active": true, "url": "https://github.com/diffpy/diffpy.utils", "grants": ["dmref15", "SymPy-1.1"], - "group": "billinge group" + "groups": ["ergs"] }, "citations": [ { diff --git a/regolith/schemas.json b/regolith/schemas.json index bcf9a7bb4..a9488d731 100644 --- a/regolith/schemas.json +++ b/regolith/schemas.json @@ -2876,31 +2876,31 @@ "anyof_type": ["string", "integer"] } }, - "packages": { + "software": { "_id": { - "description": "unique id for the representation of packages", + "description": "package id", "required": true, "type": "string" }, "active": { - "description": "the status whether the package is active or not.", + "description": "the status whether the package is actively maintained or not.", "required": true, "type": "boolean" }, "url": { - "description": "url to the package on GitHub or GitLab", + "description": "url to the package on GitHub or GitLab, etc.", "required": true, "type": "string" }, "grants": { - "description": "grant(s) that take to release the package.", - "required": false, + "description": "grant(s) that supported package development/maintenance", + "required": true, "type": "list" }, - "group": { - "description": "research group that develops the package.", + "groups": { + "description": "research group(s) that develop the package.", "required": true, - "type": "string" + "type": "list" } },