Hi,
The last piece of adding entity support to ruODK are the OData endpoints.
Quick ping to @LN and @Lindsay_Stevens_Au - what do you think of the following naming scheme:
- Service Document GET /v1/projects/{projectId}/datasets/{name}.svc
odata_entitylist_service_get
- Metadata Document
GET /v1/projects/{projectId}/datasets/{name}.svc/$metadataodata_entitylist_metadata_get
- Data Document
GET /v1/projects/{projectId}/datasets/{name}.svc/Entitiesodata_entitylist_data_get
Naming considerations:
- This naming mirrors the existing OData functions
odata_{service, metadata,submission}_get
and distinguishes itself through the_entitylist_
infix. - I'm using
entitylist
instead ofdataset
following @LN's prior advice. - I've tentatively kept the
_get
to clarify the used HTTP verb but it feels a bit verbose. Will Central ever get other HTTP methods for the OData endpoints like to modify data?