Created
September 17, 2010 20:49
-
-
Save bhenry/584919 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(defembedded Grade | |
[:scored | |
:possible | |
:percentage]) | |
(defentity Scorecard | |
[#_ :questionnaire-id ;not needed? use client's questionnaire-id | |
#_ :questionnaire-title ;also not needed? | |
:operator {:type Employee} | |
:evaluator {:type Employee} | |
:client {:type Client} | |
:call-date | |
:timestamp | |
:notes | |
:questions {:type :references :of Question} | |
:grade {:type Grade}] | |
(index (desc :timestamp)) | |
(index (desc :call-date)) | |
(index (asc :evaluator)) | |
(index (asc :operator)) | |
(index (asc :client)) | |
(index (desc :grade))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment