diff --git a/LAMP/api/activity_event_api.py b/LAMP/api/activity_event_api.py index d93d2cd..d7a48ad 100644 --- a/LAMP/api/activity_event_api.py +++ b/LAMP/api/activity_event_api.py @@ -134,6 +134,7 @@ def __all_by_participant( '_from', 'to', 'transform', + '_limit', ], 'required': [ 'participant_id', @@ -161,6 +162,8 @@ def __all_by_participant( (float,), 'transform': (str,), + '_limit': + (float,), }, 'attribute_map': { 'participant_id': 'participant_id', @@ -168,6 +171,7 @@ def __all_by_participant( '_from': 'from', 'to': 'to', 'transform': 'transform', + '_limit':'limit' }, 'location_map': { 'participant_id': 'path', @@ -175,6 +179,7 @@ def __all_by_participant( '_from': 'query', 'to': 'query', 'transform': 'query', + '_limit':'query' }, 'collection_format_map': { } @@ -276,6 +281,7 @@ def __all_by_researcher( '_from', 'to', 'transform', + '_limit', ], 'required': [ 'researcher_id', @@ -303,6 +309,8 @@ def __all_by_researcher( (float,), 'transform': (str,), + '_limit': + (float,), }, 'attribute_map': { 'researcher_id': 'researcher_id', @@ -310,6 +318,7 @@ def __all_by_researcher( '_from': 'from', 'to': 'to', 'transform': 'transform', + '_limit':'limit', }, 'location_map': { 'researcher_id': 'path', @@ -317,6 +326,7 @@ def __all_by_researcher( '_from': 'query', 'to': 'query', 'transform': 'query', + '_limit':'query', }, 'collection_format_map': { } @@ -418,6 +428,7 @@ def __all_by_study( '_from', 'to', 'transform', + '_limit', ], 'required': [ 'study_id', @@ -445,6 +456,8 @@ def __all_by_study( (float,), 'transform': (str,), + '_limit': + (float,), }, 'attribute_map': { 'study_id': 'study_id', @@ -452,6 +465,7 @@ def __all_by_study( '_from': 'from', 'to': 'to', 'transform': 'transform', + '_limit':'limit', }, 'location_map': { 'study_id': 'path', @@ -459,6 +473,7 @@ def __all_by_study( '_from': 'query', 'to': 'query', 'transform': 'query', + '_limit':'query', }, 'collection_format_map': { } diff --git a/LAMP/api/sensor_event_api.py b/LAMP/api/sensor_event_api.py index afab501..807f8f5 100644 --- a/LAMP/api/sensor_event_api.py +++ b/LAMP/api/sensor_event_api.py @@ -134,6 +134,7 @@ def __all_by_participant( '_from', 'to', 'transform', + '_limit', ], 'required': [ 'participant_id', @@ -161,6 +162,8 @@ def __all_by_participant( (float,), 'transform': (str,), + '_limit': + (float,), }, 'attribute_map': { 'participant_id': 'participant_id', @@ -168,6 +171,7 @@ def __all_by_participant( '_from': 'from', 'to': 'to', 'transform': 'transform', + '_limit':'limit' }, 'location_map': { 'participant_id': 'path', @@ -175,6 +179,7 @@ def __all_by_participant( '_from': 'query', 'to': 'query', 'transform': 'query', + '_limit':'query' }, 'collection_format_map': { } @@ -276,6 +281,7 @@ def __all_by_researcher( '_from', 'to', 'transform', + '_limit', ], 'required': [ 'researcher_id', @@ -303,6 +309,8 @@ def __all_by_researcher( (float,), 'transform': (str,), + '_limit': + (float,), }, 'attribute_map': { 'researcher_id': 'researcher_id', @@ -310,6 +318,7 @@ def __all_by_researcher( '_from': 'from', 'to': 'to', 'transform': 'transform', + '_limit':'limit', }, 'location_map': { 'researcher_id': 'path', @@ -317,6 +326,7 @@ def __all_by_researcher( '_from': 'query', 'to': 'query', 'transform': 'query', + '_limit':'query', }, 'collection_format_map': { } @@ -418,6 +428,7 @@ def __all_by_study( '_from', 'to', 'transform', + '_limit', ], 'required': [ 'study_id', @@ -445,6 +456,8 @@ def __all_by_study( (float,), 'transform': (str,), + '_limit': + (float,), }, 'attribute_map': { 'study_id': 'study_id', @@ -452,6 +465,7 @@ def __all_by_study( '_from': 'from', 'to': 'to', 'transform': 'transform', + '_limit':'limit', }, 'location_map': { 'study_id': 'path', @@ -459,6 +473,7 @@ def __all_by_study( '_from': 'query', 'to': 'query', 'transform': 'query', + '_limit':'query', }, 'collection_format_map': { }