From 1021b4abc4ae248f6c7a306c35091f819e341147 Mon Sep 17 00:00:00 2001 From: gered Date: Thu, 3 Mar 2016 19:11:07 -0500 Subject: [PATCH] fill out more of the Encounter schema definition --- vwowrla.core/src/vwowrla/core/schemas.clj | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vwowrla.core/src/vwowrla/core/schemas.clj b/vwowrla.core/src/vwowrla/core/schemas.clj index 30c5fbe..05bf2ff 100644 --- a/vwowrla.core/src/vwowrla/core/schemas.clj +++ b/vwowrla.core/src/vwowrla/core/schemas.clj @@ -74,7 +74,14 @@ ; TODO (def Encounter - {s/Any s/Any}) + {:name s/Str + :started-at java.util.Date + :entities {s/Str Entity} + :skills {s/Str s/Any} + :trigger-entities {s/Str DefinedEncounterEntity} + (s/optional-key :ended-at) java.util.Date + (s/optional-key :wipe-or-timeout?) s/Bool + (s/optional-key :duration) s/Num}) ; TODO (def RaidAnalysis