Fork me on GitHub
#off-topic
<
2019-07-15
>
Andy Nicholson05:07:22

@lee it's always Monday somewhere in the world 😉

4
😄 4
burke06:07:49

I have a terminology question, maybe someone here can help? We are developing a learning system in clojure and use EDN Documents to describe several components (Exercises, Content, Quizzes, Learning Units). So for every component we a have rules, that the base structure is a map {}, it should have an attribute :id, and so on.. (it gets complex, these are simple rules) I am not a native speaker so my question is, what is the correct English term for the entirety of these rules? Notation, Specification, Schema, File Format?

jaihindhreddy07:07:13

Are you using clojure.spec to specify these rules/constraints?

burke07:07:53

yes, mostly.

burke07:07:30

I think that, as you said, "schema" might be the right term. Many applications define json/xml schemas and there are validators for json/xml schemas.

simonkatz08:07:40

@U1Q12R4F2 Not sure if this is what you mean, but perhaps domain model? https://en.wikipedia.org/wiki/Domain_model

thanks2 4
burke08:07:12

I think that domain model is one abstraction level above. At the moment it's focused on the data structure, so schema seems to be the right word. Domain Model, might be interesting, when I'm describing how, why and with whom the data and the whole system is used/shared.

Aron06:07:23

why not Rules?

burke07:07:55

It is a concept I want to write about and "Learning Object Notation" or "Learning Object Schema" did sound in my opinion more precise than "Learning Object Rules" - maybe because of the multiple contexts where the word "rules" is used

jaihindhreddy07:07:27

schema makes more sense to my ears.

👍 8
clj 4