You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/entities-intro.rst
+36-16
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,23 @@
4
4
Introduction to Entities
5
5
**************************
6
6
7
-
If you've heard something about ODK Entities and want to better understand whether they're useful for your longitudinal data collection, you're in the right place! We've organized this page as a series of questions that are independent from each other so you can pick and choose the sections that interest you.
7
+
If you've heard something about ODK Entities and want to better understand whether they're useful for your longitudinal data collection, you're in the right place! We've organized this page as a series of questions that are independent from each other so you can focus on the topics that interest you.
8
8
9
9
If you're someone who learns best by doing, you may prefer to jump straight into the tutorial on :doc:`building a community reporting tool with Entities <tutorial-community-reporting>` and to come back here if you have any questions. If you have a question that we haven't answered, you can `post on the forum <https://forum.getodk.org/c/support/6>`_.
10
10
11
+
**Topics**
12
+
13
+
* :ref:`Overview <entities-intro-concepts>`: how Entities fit with ODK concepts like Forms and longitudinal data collection
14
+
* :ref:`What's coming <entities-intro-limitations>`: current limitations and plans for the future
15
+
* :ref:`Alternatives <entities-intro-alternatives>`: other concepts in ODK you can use and other software to consider
16
+
* :ref:`Get started <entities-intro-get-started>`: how to use Entities in your workflow
17
+
11
18
.. note::
12
19
13
20
This document assumes you are using `ODK Cloud <https://getodk.org/#pricing>`_ or an up-to-date :doc:`ODK Central <central-intro>` server. Entities are not yet available in other ODK-compatible systems.
14
21
22
+
.. _entities-intro-concepts:
23
+
15
24
Concepts
16
25
========
17
26
@@ -82,12 +91,14 @@ Why can't I just flow data from one form to another form?
82
91
83
92
We have added the Entity concept instead of letting data flow directly between forms because it adds more flexibility. In particular, it's common to have a workflow centered around a thing with a status that determines what needs to be done with that thing. Having an Entity representation with one or more properties that represent its status means it's significantly easier to have multiple forms that can update that status and to show a list of Entities with the latest status information.
84
93
85
-
In many contexts, the information that needs to be shared between forms is minimal and sometimes as little as an ID and label are enough. Sometimes the subjects of a workflow are known ahead of time, either from a prior ODK form or some other system. Entities makes both of these cases straightforward to represent.
94
+
In many contexts, the information that needs to be shared between forms is minimal and sometimes as little as an ID and label are enough. Sometimes the subjects of a workflow are known ahead of time, either from a prior ODK form or some other system. Entities make both of these scenarios straightforward to represent.
86
95
87
96
If your workflow requires accessing all captured data about an Entity, directly flowing data between forms would likely have worked well. You can achieve something similar with Entities by creating an Entity List that represents encounters with the Entity.
88
97
89
98
For example, let's say that you have trees that you want to evaluate over time. You could have a ``trees`` Entity List that includes fixed properties of the trees: their location, their species, etc. Then you could have a second Entity List called ``tree_measurements`` that includes a property that represents a link back to a ``tree`` Entity as well as any measurements made during a new encounter.
90
99
100
+
.. _entities-intro-limitations:
101
+
91
102
Limitations
92
103
===========
93
104
@@ -129,6 +140,13 @@ If there is a parent-child relationship between the different Entities, you can
129
140
130
141
Similarly, if you'd like to establish relationships between multiple Entities of different types, you can have a registration form for each type and include a field to represent a link to another Entity.
131
142
143
+
My Entities have associated media, can I attach files to them?
Not yet, but this is something we will eventually support. If you are interested in possible temporary workarounds, see `this forum thread <https://forum.getodk.org/t/retrieving-dynamic-media-from-entity/47820>`_
147
+
148
+
.. _entities-intro-alternatives:
149
+
132
150
Alternatives
133
151
============
134
152
@@ -160,7 +178,7 @@ ODK is a flexible data collection platform. Its strength is that it lets you qui
160
178
161
179
The domain that you work in likely has systems for managing workflows similar to the ones you need to support. This could be a system designed to support a community health worker program, to monitor tree health over time, to track samples in a lab, etc. Those systems typically have some built-in concepts around the data that needs to be collected, the people that might be involved, the status changes that a workflow subject can go through, and so on.
162
180
163
-
If you have specialized software that supports your domain's workflows, we recommend giving that software a try. If instead you prefer the flexibility to define your forms and Entity Lists to exactly match your workflow needs, ODK will be better a fit.
181
+
If you have specialized software that supports your domain's workflows, we recommend giving that software a try. If you find that you need the flexibility to define your forms and Entity Lists to exactly match your workflow needs, ODK may be a better fit.
164
182
165
183
Here are some questions to consider when deciding between using ODK and specialized software:
166
184
@@ -172,8 +190,21 @@ In general, workflows that are focused or short-lived can very easily be represe
172
190
173
191
That said, in many contexts, workflow needs are so specific that a flexible platform like ODK offers great benefits. Once you have defined your workflow in ODK, the forms you have built can become the standard, specialized way to support others in your domain.
174
192
175
-
Mechanics
176
-
=========
193
+
.. _entities-intro-get-started:
194
+
195
+
Get started
196
+
============
197
+
198
+
How do I use forms to create or update Entities?
199
+
------------------------------------------------
200
+
201
+
Add an ``entities`` sheet to your form. This sheet is used to define how data from this form's submissions should be applied to Entity Lists. Currently, a single submission can only affect a single Entity in a fixed Entity List. To specify which list to create or update an Entity in, use the ``list_name`` column. If you're creating Entities, you'll also need to specify an expression to label each Entity in the ``label`` column (it's optional if you're doing an update). This is very similar to :ref:`the instance_name column <instance-name>` for naming filled forms.
202
+
203
+
Next, specify which form fields should be saved to Entity properties. This is done on the ``survey`` sheet by putting the desired property name in the ``save_to`` column for each form field that you want to save.
Add an ``entities`` sheet to your form and use it to define the Entity List that the form's submission will populate and an expression for each Entity's label.
200
-
201
-
Next, specify which form fields should be saved to Entity properties. This is done on the ``survey`` sheet by putting the desired property name in the ``save_to`` column for each form field that you want to save.
0 commit comments