@swagger_auto_schema(responses={200:'A JSON object with two properties: group:<the_group_name>, stations:<the_list_of_stations>',
@swagger_auto_schema(responses={200:'A JSON object with two properties: group:<the_group_name>, stations:<the_list_of_stations>',
404:'No such group or template available'},
404:'No such group or template available'},
operation_description="Get a JSON list of stations for the given <station_group> name the the group definitions in the common_schema_template given by <template_name> and <template_version>")
operation_description="Get a JSON list of stations for the given <station_group> name the the group definitions in the common_schema_template given by <template_name> and <template_version>")
path('schemas/<str:template>/<str:name>/<str:version>',views.get_template_json_schema,name='get_template_json_schema'),#TODO: how to make trailing slash optional?
path('schemas/<str:template>/<str:name>/<str:version>',views.get_template_json_schema,name='get_template_json_schema'),#TODO: how to make trailing slash optional?
path('station_groups/<str:station_group>/<str:template_name>/<str:template_version>',views.get_stations_in_group,name='get_stations_in_group'),#TODO: how to make trailing slash optional?
path('station_groups/<str:template_name>/<str:template_version>/<str:station_group>',views.get_stations_in_group,name='get_stations_in_group'),#TODO: how to make trailing slash optional?