From 0e6ccd10d9dd6a6d6d554b4b29b9f5d5a2d455fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Fri, 18 Mar 2022 11:09:16 +0100 Subject: [PATCH 01/12] Remove views from existing projects on view update --- rdmo/views/serializers/v1.py | 14 + rdmo/views/tests/test_viewset_view.py | 35 + testing/fixtures/projects.json | 9525 +++++++++++++------------ testing/fixtures/views.json | 134 +- 4 files changed, 4917 insertions(+), 4791 deletions(-) diff --git a/rdmo/views/serializers/v1.py b/rdmo/views/serializers/v1.py index fe63c4093f..f23fa7e26e 100644 --- a/rdmo/views/serializers/v1.py +++ b/rdmo/views/serializers/v1.py @@ -5,6 +5,8 @@ from rdmo.core.serializers import (MarkdownSerializerMixin, SiteSerializer, TranslationSerializerMixin) from rdmo.core.utils import get_language_warning +from rdmo.projects.models.project import Project +from rdmo.questions.models.catalog import Catalog from ..models import View from ..validators import ViewLockedValidator, ViewUniqueURIValidator @@ -26,6 +28,18 @@ def validate(self, data): return super(ViewSerializer, self).validate(data) + def update(self, instance, validated_data): + instance = super(ViewSerializer, self).update(instance, validated_data) + + # hook to remove views from existing projects that use catalogs for which the view + # is not/no longer configured + if instance.catalogs.all().count() > 0: + catalogs = Catalog.objects.exclude(id__in=instance.catalogs.all().values_list('pk')) + for proj in Project.objects.filter(catalog__in=catalogs, views=instance): + proj.views.remove(instance) + + return instance + class Meta: model = View fields = ( diff --git a/rdmo/views/tests/test_viewset_view.py b/rdmo/views/tests/test_viewset_view.py index 5321de24fc..f2feea9a5f 100644 --- a/rdmo/views/tests/test_viewset_view.py +++ b/rdmo/views/tests/test_viewset_view.py @@ -3,6 +3,8 @@ import pytest from django.urls import reverse +from rdmo.projects.models import Project + from ..models import View users = ( @@ -13,6 +15,12 @@ ('anonymous', None), ) +view_project_test_users = ( + ('editor', 'editor'), + ('api', 'api'), +) + + status_map = { 'list': { 'editor': 200, 'reviewer': 200, 'api': 200, 'user': 403, 'anonymous': 401 @@ -40,6 +48,10 @@ 'copy': 'v1-views:view-copy' } +view_project_test = { + ('3', '2', '10') +} + @pytest.mark.parametrize('username,password', users) def test_list(db, client, username, password): @@ -126,6 +138,29 @@ def test_update(db, client, username, password): response = client.put(url, data, content_type='application/json') assert response.status_code == status_map['update'][username], response.json() +@pytest.mark.parametrize('username,password', view_project_test_users) +@pytest.mark.parametrize('view_id,catalog_id,project_id', view_project_test) +def test_update_projects(db, client, username, password, view_id, catalog_id, project_id): + client.login(username=username, password=password) + view = View.objects.get(pk=view_id) + + url = reverse(urlnames['detail'], args=[view.pk]) + data = { + 'uri_prefix': view.uri_prefix, + 'key': view.key, + 'comment': view.comment, + 'template': view.template, + 'title_en': view.title_lang1, + 'title_de': view.title_lang2, + 'help_en': view.help_lang1, + 'help_de': view.help_lang2, + 'catalogs': [catalog_id] + } + response = client.put(url, data, content_type='application/json') + assert response.status_code == status_map['update'][username], response.json() + + with pytest.raises(Project.DoesNotExist): + Project.objects.filter(views=view).get(pk=project_id) @pytest.mark.parametrize('username,password', users) def test_delete(db, client, username, password): diff --git a/testing/fixtures/projects.json b/testing/fixtures/projects.json index d831d38ce9..be64492789 100644 --- a/testing/fixtures/projects.json +++ b/testing/fixtures/projects.json @@ -1,5675 +1,5724 @@ [ - { +{ "model": "projects.continuation", "pk": 1, "fields": { - "created": "2021-06-01T15:21:18.566Z", - "updated": "2021-06-02T15:14:32.659Z", - "project": 1, - "user": 1, - "questionset": 87 + "created": "2021-06-01T15:21:18.566Z", + "updated": "2021-06-02T15:14:32.659Z", + "project": 1, + "user": 1, + "questionset": 87 } - }, - { +}, +{ "model": "projects.integration", "pk": 1, "fields": { - "project": 1, - "provider_key": "github" + "project": 1, + "provider_key": "github" } - }, - { +}, +{ "model": "projects.integration", "pk": 2, "fields": { - "project": 2, - "provider_key": "github" + "project": 2, + "provider_key": "github" } - }, - { +}, +{ "model": "projects.integrationoption", "pk": 1, "fields": { - "integration": 1, - "key": "repo", - "value": "example/example", - "secret": false + "integration": 1, + "key": "repo", + "value": "example/example", + "secret": false } - }, - { +}, +{ "model": "projects.integrationoption", "pk": 2, "fields": { - "integration": 1, - "key": "secret", - "value": "super_duper_secret", - "secret": false + "integration": 1, + "key": "secret", + "value": "super_duper_secret", + "secret": false } - }, - { +}, +{ "model": "projects.integrationoption", "pk": 3, "fields": { - "integration": 2, - "key": "repo", - "value": "example/example", - "secret": false + "integration": 2, + "key": "repo", + "value": "example/example", + "secret": false } - }, - { +}, +{ "model": "projects.integrationoption", "pk": 4, "fields": { - "integration": 2, - "key": "secret", - "value": "super_duper_secret", - "secret": true + "integration": 2, + "key": "secret", + "value": "super_duper_secret", + "secret": true } - }, - { +}, +{ "model": "projects.issue", "pk": 1, "fields": { - "project": 1, - "task": 1, - "status": "open" + "project": 1, + "task": 1, + "status": "open" } - }, - { +}, +{ "model": "projects.issue", "pk": 2, "fields": { - "project": 2, - "task": 1, - "status": "open" + "project": 2, + "task": 1, + "status": "open" } - }, - { +}, +{ "model": "projects.issue", "pk": 3, "fields": { - "project": 3, - "task": 1, - "status": "open" + "project": 3, + "task": 1, + "status": "open" } - }, - { +}, +{ "model": "projects.issue", "pk": 4, "fields": { - "project": 4, - "task": 1, - "status": "open" + "project": 4, + "task": 1, + "status": "open" } - }, - { +}, +{ "model": "projects.issue", "pk": 5, "fields": { - "project": 5, - "task": 1, - "status": "open" + "project": 5, + "task": 1, + "status": "open" } - }, - { +}, +{ + "model": "projects.issue", + "pk": 6, + "fields": { + "project": 10, + "task": 2, + "status": "open" + } +}, +{ + "model": "projects.issue", + "pk": 7, + "fields": { + "project": 10, + "task": 1, + "status": "open" + } +}, +{ "model": "projects.issueresource", "pk": 1, "fields": { - "issue": 1, - "integration": 1, - "url": "https://github.com/example/example/issues/1" + "issue": 1, + "integration": 1, + "url": "https://github.com/example/example/issues/1" } - }, - { +}, +{ "model": "projects.membership", "pk": 1, "fields": { - "project": 1, - "user": 5, - "role": "owner" + "project": 1, + "user": 5, + "role": "owner" } - }, - { +}, +{ "model": "projects.membership", "pk": 2, "fields": { - "project": 1, - "user": 6, - "role": "manager" + "project": 1, + "user": 6, + "role": "manager" } - }, - { +}, +{ "model": "projects.membership", "pk": 3, "fields": { - "project": 1, - "user": 7, - "role": "author" + "project": 1, + "user": 7, + "role": "author" } - }, - { +}, +{ "model": "projects.membership", "pk": 4, "fields": { - "project": 1, - "user": 8, - "role": "guest" + "project": 1, + "user": 8, + "role": "guest" } - }, - { +}, +{ "model": "projects.membership", "pk": 5, "fields": { - "project": 2, - "user": 5, - "role": "owner" + "project": 2, + "user": 5, + "role": "owner" } - }, - { +}, +{ "model": "projects.membership", "pk": 6, "fields": { - "project": 3, - "user": 5, - "role": "owner" + "project": 3, + "user": 5, + "role": "owner" } - }, - { +}, +{ "model": "projects.membership", "pk": 7, "fields": { - "project": 4, - "user": 5, - "role": "owner" + "project": 4, + "user": 5, + "role": "owner" } - }, - { +}, +{ "model": "projects.membership", "pk": 8, "fields": { - "project": 5, - "user": 5, - "role": "owner" + "project": 5, + "user": 5, + "role": "owner" } - }, - { +}, +{ "model": "projects.membership", "pk": 9, "fields": { - "project": 3, - "user": 6, - "role": "manager" + "project": 3, + "user": 6, + "role": "manager" } - }, - { +}, +{ "model": "projects.membership", "pk": 10, "fields": { - "project": 3, - "user": 7, - "role": "author" + "project": 3, + "user": 7, + "role": "author" } - }, - { +}, +{ "model": "projects.membership", "pk": 11, "fields": { - "project": 3, - "user": 8, - "role": "guest" + "project": 3, + "user": 8, + "role": "guest" } - }, - { +}, +{ "model": "projects.membership", "pk": 12, "fields": { - "project": 7, - "user": 6, - "role": "manager" + "project": 7, + "user": 6, + "role": "manager" } - }, - { +}, +{ "model": "projects.membership", "pk": 13, "fields": { - "project": 8, - "user": 7, - "role": "author" + "project": 8, + "user": 7, + "role": "author" } - }, - { +}, +{ "model": "projects.membership", "pk": 14, "fields": { - "project": 9, - "user": 8, - "role": "guest" + "project": 9, + "user": 8, + "role": "guest" } - }, - { +}, +{ + "model": "projects.membership", + "pk": 15, + "fields": { + "project": 10, + "user": 5, + "role": "owner" + } +}, +{ "model": "projects.project", "pk": 1, "fields": { - "created": "2017-01-30T07:55:13.007Z", - "updated": "2017-03-01T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Test", - "description": "This is a test!", - "catalog": 1, - "lft": 1, - "rght": 2, - "tree_id": 1, - "level": 0, - "views": [ - 1 - ] - } - }, - { + "created": "2017-01-30T07:55:13.007Z", + "updated": "2017-03-01T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Test", + "description": "This is a test!", + "catalog": 1, + "lft": 1, + "rght": 2, + "tree_id": 1, + "level": 0, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 2, "fields": { - "created": "2020-12-07T11:55:36.442Z", - "updated": "2020-12-07T11:56:35.856Z", - "parent": null, - "site": 1, - "title": "Parent", - "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", - "catalog": 1, - "lft": 1, - "rght": 6, - "tree_id": 2, - "level": 0, - "views": [ - 1 - ] - } - }, - { + "created": "2020-12-07T11:55:36.442Z", + "updated": "2020-12-07T11:56:35.856Z", + "parent": null, + "site": 1, + "title": "Parent", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", + "catalog": 1, + "lft": 1, + "rght": 6, + "tree_id": 2, + "level": 0, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 3, "fields": { - "created": "2020-12-07T11:55:59.339Z", - "updated": "2020-12-07T11:55:59.339Z", - "parent": 2, - "site": 1, - "title": "Child1", - "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "catalog": 1, - "lft": 2, - "rght": 5, - "tree_id": 2, - "level": 1, - "views": [ - 1 - ] - } - }, - { + "created": "2020-12-07T11:55:59.339Z", + "updated": "2020-12-07T11:55:59.339Z", + "parent": 2, + "site": 1, + "title": "Child1", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "catalog": 1, + "lft": 2, + "rght": 5, + "tree_id": 2, + "level": 1, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 4, "fields": { - "created": "2020-12-07T11:56:11.992Z", - "updated": "2020-12-07T11:56:19.183Z", - "parent": 2, - "site": 1, - "title": "Child2", - "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", - "catalog": 1, - "lft": 10, - "rght": 11, - "tree_id": 2, - "level": 1, - "views": [ - 1 - ] - } - }, - { + "created": "2020-12-07T11:56:11.992Z", + "updated": "2020-12-07T11:56:19.183Z", + "parent": 2, + "site": 1, + "title": "Child2", + "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", + "catalog": 1, + "lft": 10, + "rght": 11, + "tree_id": 2, + "level": 1, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 5, "fields": { - "created": "2020-12-13T11:03:53.637Z", - "updated": "2020-12-13T11:03:53.637Z", - "parent": 3, - "site": 1, - "title": "Child11", - "description": "", - "catalog": 1, - "lft": 3, - "rght": 4, - "tree_id": 2, - "level": 2, - "views": [ - 1 - ] - } - }, - { + "created": "2020-12-13T11:03:53.637Z", + "updated": "2020-12-13T11:03:53.637Z", + "parent": 3, + "site": 1, + "title": "Child11", + "description": "", + "catalog": 1, + "lft": 3, + "rght": 4, + "tree_id": 2, + "level": 2, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 6, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 2, - "rght": 7, - "tree_id": 3, - "level": 0, - "views": [ - 1 - ] - } - }, - { + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 2, + "rght": 7, + "tree_id": 3, + "level": 0, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 7, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 6, - "rght": 8, - "tree_id": 4, - "level": 0, - "views": [ - 1 - ] - } - }, - { + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 6, + "rght": 8, + "tree_id": 4, + "level": 0, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 8, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 7, - "rght": 9, - "tree_id": 5, - "level": 0, - "views": [ - 1 - ] - } - }, - { + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 7, + "rght": 9, + "tree_id": 5, + "level": 0, + "views": [ + 1 + ] + } +}, +{ "model": "projects.project", "pk": 9, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 8, - "rght": 12, - "tree_id": 6, - "level": 0, - "views": [ - 1 - ] - } - }, - { + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 8, + "rght": 12, + "tree_id": 6, + "level": 0, + "views": [ + 1 + ] + } +}, +{ + "model": "projects.project", + "pk": 10, + "fields": { + "created": "2022-03-18T09:22:57.948Z", + "updated": "2022-03-18T09:26:17.893Z", + "parent": null, + "site": 1, + "title": "View Test", + "description": "", + "catalog": 1, + "lft": 1, + "rght": 2, + "tree_id": 7, + "level": 0, + "views": [ + 1, + 2, + 3 + ] + } +}, +{ "model": "projects.snapshot", "pk": 1, "fields": { - "created": "2018-08-30T12:09:19.774Z", - "updated": "2018-08-30T12:09:45.416Z", - "project": 1, - "title": "A first snapshot", - "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua." + "created": "2018-08-30T12:09:19.774Z", + "updated": "2018-08-30T12:09:45.416Z", + "project": 1, + "title": "A first snapshot", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua." } - }, - { +}, +{ "model": "projects.snapshot", "pk": 3, "fields": { - "created": "2021-01-07T13:00:55.195Z", - "updated": "2021-01-07T13:00:55.195Z", - "project": 2, - "title": "Test", - "description": "" + "created": "2021-01-07T13:00:55.195Z", + "updated": "2021-01-07T13:00:55.195Z", + "project": 2, + "title": "Test", + "description": "" } - }, - { +}, +{ "model": "projects.snapshot", "pk": 4, "fields": { - "created": "2021-01-07T13:00:59.668Z", - "updated": "2021-01-07T13:00:59.668Z", - "project": 3, - "title": "Test", - "description": "" + "created": "2021-01-07T13:00:59.668Z", + "updated": "2021-01-07T13:00:59.668Z", + "project": 3, + "title": "Test", + "description": "" } - }, - { +}, +{ "model": "projects.snapshot", "pk": 5, "fields": { - "created": "2021-01-07T13:01:03.895Z", - "updated": "2021-01-07T13:01:03.895Z", - "project": 4, - "title": "Test", - "description": "" + "created": "2021-01-07T13:01:03.895Z", + "updated": "2021-01-07T13:01:03.895Z", + "project": 4, + "title": "Test", + "description": "" } - }, - { +}, +{ "model": "projects.snapshot", "pk": 6, "fields": { - "created": "2021-01-07T13:01:08.372Z", - "updated": "2021-01-07T13:01:08.372Z", - "project": 5, - "title": "Test", - "description": "" + "created": "2021-01-07T13:01:08.372Z", + "updated": "2021-01-07T13:01:08.372Z", + "project": 5, + "title": "Test", + "description": "" } - }, - { +}, +{ "model": "projects.snapshot", "pk": 7, "fields": { - "created": "2021-02-21T12:32:42.677Z", - "updated": "2021-02-21T12:32:54.725Z", - "project": 1, - "title": "A second snapshot", - "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet." + "created": "2021-02-21T12:32:42.677Z", + "updated": "2021-02-21T12:32:54.725Z", + "project": 1, + "title": "A second snapshot", + "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet." } - }, - { +}, +{ "model": "projects.value", "pk": 1, "fields": { - "created": "2017-04-25T14:52:59.412Z", - "updated": "2018-07-23T12:15:12.912Z", - "project": 1, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:52:59.412Z", + "updated": "2018-07-23T12:15:12.912Z", + "project": 1, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 2, "fields": { - "created": "2017-04-25T14:53:03.399Z", - "updated": "2018-07-20T15:08:28.850Z", - "project": 1, - "snapshot": null, - "attribute": 4, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:03.399Z", + "updated": "2018-07-20T15:08:28.850Z", + "project": 1, + "snapshot": null, + "attribute": 4, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 3, "fields": { - "created": "2017-04-25T14:53:05.503Z", - "updated": "2018-07-20T15:08:28.881Z", - "project": 1, - "snapshot": null, - "attribute": 8, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:05.503Z", + "updated": "2018-07-20T15:08:28.881Z", + "project": 1, + "snapshot": null, + "attribute": 8, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 4, "fields": { - "created": "2017-04-25T14:53:12.956Z", - "updated": "2018-07-20T15:08:28.883Z", - "project": 1, - "snapshot": null, - "attribute": 11, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum", - "option": 7, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:12.956Z", + "updated": "2018-07-20T15:08:28.883Z", + "project": 1, + "snapshot": null, + "attribute": 11, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum", + "option": 7, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 5, "fields": { - "created": "2017-04-25T14:53:15.855Z", - "updated": "2018-07-20T15:08:28.893Z", - "project": 1, - "snapshot": null, - "attribute": 12, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:15.855Z", + "updated": "2018-07-20T15:08:28.893Z", + "project": 1, + "snapshot": null, + "attribute": 12, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 6, "fields": { - "created": "2017-04-25T14:53:21.131Z", - "updated": "2018-07-20T15:08:28.888Z", - "project": 1, - "snapshot": null, - "attribute": 7, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "37", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:21.131Z", + "updated": "2018-07-20T15:08:28.888Z", + "project": 1, + "snapshot": null, + "attribute": 7, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "37", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 7, "fields": { - "created": "2017-04-25T14:53:30.134Z", - "updated": "2018-07-31T11:16:36.138Z", - "project": 1, - "snapshot": null, - "attribute": 9, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-01T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:30.134Z", + "updated": "2018-07-31T11:16:36.138Z", + "project": 1, + "snapshot": null, + "attribute": 9, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-01T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 8, "fields": { - "created": "2017-04-25T14:53:40.735Z", - "updated": "2018-07-20T15:08:34.026Z", - "project": 1, - "snapshot": null, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:40.735Z", + "updated": "2018-07-20T15:08:34.026Z", + "project": 1, + "snapshot": null, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 9, "fields": { - "created": "2017-04-25T14:53:40.744Z", - "updated": "2018-07-20T15:08:34.031Z", - "project": 1, - "snapshot": null, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:40.744Z", + "updated": "2018-07-20T15:08:34.031Z", + "project": 1, + "snapshot": null, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 10, "fields": { - "created": "2017-04-25T14:53:45.659Z", - "updated": "2018-07-20T15:08:34.052Z", - "project": 1, - "snapshot": null, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:45.659Z", + "updated": "2018-07-20T15:08:34.052Z", + "project": 1, + "snapshot": null, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 11, "fields": { - "created": "2017-04-25T14:53:56.532Z", - "updated": "2018-07-20T15:08:34.045Z", - "project": 1, - "snapshot": null, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:56.532Z", + "updated": "2018-07-20T15:08:34.045Z", + "project": 1, + "snapshot": null, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 12, "fields": { - "created": "2017-04-25T14:54:01.077Z", - "updated": "2018-07-20T15:08:34.037Z", - "project": 1, - "snapshot": null, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:01.077Z", + "updated": "2018-07-20T15:08:34.037Z", + "project": 1, + "snapshot": null, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 13, "fields": { - "created": "2017-04-25T14:54:01.087Z", - "updated": "2018-07-20T15:08:34.069Z", - "project": 1, - "snapshot": null, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:01.087Z", + "updated": "2018-07-20T15:08:34.069Z", + "project": 1, + "snapshot": null, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 14, "fields": { - "created": "2017-04-25T14:54:01.088Z", - "updated": "2018-07-20T15:08:34.087Z", - "project": 1, - "snapshot": null, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:01.088Z", + "updated": "2018-07-20T15:08:34.087Z", + "project": 1, + "snapshot": null, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 15, "fields": { - "created": "2017-04-25T14:54:41.838Z", - "updated": "2018-07-20T15:08:34.141Z", - "project": 1, - "snapshot": null, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:41.838Z", + "updated": "2018-07-20T15:08:34.141Z", + "project": 1, + "snapshot": null, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 16, "fields": { - "created": "2017-04-25T14:54:41.842Z", - "updated": "2018-07-20T15:08:34.143Z", - "project": 1, - "snapshot": null, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:41.842Z", + "updated": "2018-07-20T15:08:34.143Z", + "project": 1, + "snapshot": null, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 17, "fields": { - "created": "2017-04-25T14:54:41.844Z", - "updated": "2018-07-20T15:08:34.101Z", - "project": 1, - "snapshot": null, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:41.844Z", + "updated": "2018-07-20T15:08:34.101Z", + "project": 1, + "snapshot": null, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 18, "fields": { - "created": "2017-04-25T14:54:48.745Z", - "updated": "2018-07-20T15:08:34.154Z", - "project": 1, - "snapshot": null, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:48.745Z", + "updated": "2018-07-20T15:08:34.154Z", + "project": 1, + "snapshot": null, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 19, "fields": { - "created": "2017-04-25T14:54:48.750Z", - "updated": "2018-07-20T15:08:34.167Z", - "project": 1, - "snapshot": null, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:48.750Z", + "updated": "2018-07-20T15:08:34.167Z", + "project": 1, + "snapshot": null, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 20, "fields": { - "created": "2017-04-25T14:54:48.751Z", - "updated": "2018-07-20T15:08:34.131Z", - "project": 1, - "snapshot": null, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:48.751Z", + "updated": "2018-07-20T15:08:34.131Z", + "project": 1, + "snapshot": null, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 21, "fields": { - "created": "2017-04-25T14:54:57.674Z", - "updated": "2018-07-20T15:08:34.223Z", - "project": 1, - "snapshot": null, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "50", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:57.674Z", + "updated": "2018-07-20T15:08:34.223Z", + "project": 1, + "snapshot": null, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "50", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 22, "fields": { - "created": "2017-04-25T14:54:57.682Z", - "updated": "2018-07-20T15:08:34.185Z", - "project": 1, - "snapshot": null, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:57.682Z", + "updated": "2018-07-20T15:08:34.185Z", + "project": 1, + "snapshot": null, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 23, "fields": { - "created": "2017-04-25T14:54:57.685Z", - "updated": "2018-07-20T15:08:34.208Z", - "project": 1, - "snapshot": null, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "100", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:57.685Z", + "updated": "2018-07-20T15:08:34.208Z", + "project": 1, + "snapshot": null, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "100", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 24, "fields": { - "created": "2017-04-25T14:55:06.062Z", - "updated": "2018-07-20T15:08:34.224Z", - "project": 1, - "snapshot": null, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2017-04-02T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:06.062Z", + "updated": "2018-07-20T15:08:34.224Z", + "project": 1, + "snapshot": null, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2017-04-02T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 25, "fields": { - "created": "2017-04-25T14:55:06.073Z", - "updated": "2018-07-20T15:08:34.226Z", - "project": 1, - "snapshot": null, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2017-04-01T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:06.073Z", + "updated": "2018-07-20T15:08:34.226Z", + "project": 1, + "snapshot": null, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2017-04-01T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 26, "fields": { - "created": "2017-04-25T14:55:06.075Z", - "updated": "2018-07-20T15:08:34.264Z", - "project": 1, - "snapshot": null, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "2017-04-03T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:06.075Z", + "updated": "2018-07-20T15:08:34.264Z", + "project": 1, + "snapshot": null, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "2017-04-03T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 27, "fields": { - "created": "2017-04-25T14:55:11.016Z", - "updated": "2018-07-20T15:08:34.265Z", - "project": 1, - "snapshot": null, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:11.016Z", + "updated": "2018-07-20T15:08:34.265Z", + "project": 1, + "snapshot": null, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 29, "fields": { - "created": "2017-04-25T14:55:19.847Z", - "updated": "2018-07-20T15:09:31.505Z", - "project": 1, - "snapshot": null, - "attribute": 49, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:19.847Z", + "updated": "2018-07-20T15:09:31.505Z", + "project": 1, + "snapshot": null, + "attribute": 49, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 30, "fields": { - "created": "2017-04-25T14:55:19.853Z", - "updated": "2018-07-20T15:09:31.508Z", - "project": 1, - "snapshot": null, - "attribute": 50, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:19.853Z", + "updated": "2018-07-20T15:09:31.508Z", + "project": 1, + "snapshot": null, + "attribute": 50, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 31, "fields": { - "created": "2017-04-25T14:55:25.443Z", - "updated": "2018-07-20T15:27:00.982Z", - "project": 1, - "snapshot": null, - "attribute": 47, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:25.443Z", + "updated": "2018-07-20T15:27:00.982Z", + "project": 1, + "snapshot": null, + "attribute": 47, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 32, "fields": { - "created": "2017-04-25T14:55:25.449Z", - "updated": "2018-07-20T15:27:00.979Z", - "project": 1, - "snapshot": null, - "attribute": 48, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:25.449Z", + "updated": "2018-07-20T15:27:00.979Z", + "project": 1, + "snapshot": null, + "attribute": 48, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 34, "fields": { - "created": "2017-04-25T14:55:30.120Z", - "updated": "2018-07-20T15:27:01.167Z", - "project": 1, - "snapshot": null, - "attribute": 48, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:30.120Z", + "updated": "2018-07-20T15:27:01.167Z", + "project": 1, + "snapshot": null, + "attribute": 48, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 35, "fields": { - "created": "2017-04-25T14:55:30.124Z", - "updated": "2018-07-20T15:27:01.174Z", - "project": 1, - "snapshot": null, - "attribute": 47, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:30.124Z", + "updated": "2018-07-20T15:27:01.174Z", + "project": 1, + "snapshot": null, + "attribute": 47, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 46, "fields": { - "created": "2018-07-20T15:08:22.495Z", - "updated": "2018-07-20T15:08:34.266Z", - "project": 1, - "snapshot": null, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:22.495Z", + "updated": "2018-07-20T15:08:34.266Z", + "project": 1, + "snapshot": null, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 47, "fields": { - "created": "2018-07-20T15:08:38.974Z", - "updated": "2018-07-20T15:09:31.574Z", - "project": 1, - "snapshot": null, - "attribute": 49, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.974Z", + "updated": "2018-07-20T15:09:31.574Z", + "project": 1, + "snapshot": null, + "attribute": 49, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 48, "fields": { - "created": "2018-07-20T15:08:38.975Z", - "updated": "2018-07-20T15:09:31.585Z", - "project": 1, - "snapshot": null, - "attribute": 50, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.975Z", + "updated": "2018-07-20T15:09:31.585Z", + "project": 1, + "snapshot": null, + "attribute": 50, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 49, "fields": { - "created": "2018-07-20T15:08:38.976Z", - "updated": "2018-07-20T15:09:31.623Z", - "project": 1, - "snapshot": null, - "attribute": 74, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.976Z", + "updated": "2018-07-20T15:09:31.623Z", + "project": 1, + "snapshot": null, + "attribute": 74, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 50, "fields": { - "created": "2018-07-20T15:08:38.982Z", - "updated": "2018-07-20T15:09:31.595Z", - "project": 1, - "snapshot": null, - "attribute": 70, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.982Z", + "updated": "2018-07-20T15:09:31.595Z", + "project": 1, + "snapshot": null, + "attribute": 70, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 51, "fields": { - "created": "2018-07-20T15:08:38.992Z", - "updated": "2018-07-20T15:09:31.621Z", - "project": 1, - "snapshot": null, - "attribute": 76, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.992Z", + "updated": "2018-07-20T15:09:31.621Z", + "project": 1, + "snapshot": null, + "attribute": 76, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 52, "fields": { - "created": "2018-07-20T15:08:38.997Z", - "updated": "2018-07-20T15:09:31.644Z", - "project": 1, - "snapshot": null, - "attribute": 75, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.997Z", + "updated": "2018-07-20T15:09:31.644Z", + "project": 1, + "snapshot": null, + "attribute": 75, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 53, "fields": { - "created": "2018-07-20T15:08:39.010Z", - "updated": "2018-07-20T15:09:31.645Z", - "project": 1, - "snapshot": null, - "attribute": 71, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:39.010Z", + "updated": "2018-07-20T15:09:31.645Z", + "project": 1, + "snapshot": null, + "attribute": 71, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 54, "fields": { - "created": "2018-07-20T15:09:23.797Z", - "updated": "2018-07-20T15:09:31.514Z", - "project": 1, - "snapshot": null, - "attribute": 70, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.797Z", + "updated": "2018-07-20T15:09:31.514Z", + "project": 1, + "snapshot": null, + "attribute": 70, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 55, "fields": { - "created": "2018-07-20T15:09:23.807Z", - "updated": "2018-07-20T15:09:31.525Z", - "project": 1, - "snapshot": null, - "attribute": 75, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.807Z", + "updated": "2018-07-20T15:09:31.525Z", + "project": 1, + "snapshot": null, + "attribute": 75, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 56, "fields": { - "created": "2018-07-20T15:09:23.804Z", - "updated": "2018-07-20T15:09:31.543Z", - "project": 1, - "snapshot": null, - "attribute": 74, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.804Z", + "updated": "2018-07-20T15:09:31.543Z", + "project": 1, + "snapshot": null, + "attribute": 74, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 57, "fields": { - "created": "2018-07-20T15:09:23.813Z", - "updated": "2018-07-20T15:09:31.530Z", - "project": 1, - "snapshot": null, - "attribute": 76, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.813Z", + "updated": "2018-07-20T15:09:31.530Z", + "project": 1, + "snapshot": null, + "attribute": 76, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 58, "fields": { - "created": "2018-07-20T15:09:23.833Z", - "updated": "2018-07-20T15:09:31.565Z", - "project": 1, - "snapshot": null, - "attribute": 71, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.833Z", + "updated": "2018-07-20T15:09:31.565Z", + "project": 1, + "snapshot": null, + "attribute": 71, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 59, "fields": { - "created": "2018-07-20T15:27:00.962Z", - "updated": "2018-07-20T15:27:00.962Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.962Z", + "updated": "2018-07-20T15:27:00.962Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 60, "fields": { - "created": "2018-07-20T15:27:00.980Z", - "updated": "2018-07-20T15:27:00.980Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.980Z", + "updated": "2018-07-20T15:27:00.980Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 61, "fields": { - "created": "2018-07-20T15:27:00.981Z", - "updated": "2018-07-20T15:27:00.981Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.981Z", + "updated": "2018-07-20T15:27:00.981Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 62, "fields": { - "created": "2018-07-20T15:27:00.995Z", - "updated": "2018-07-20T15:27:00.995Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.995Z", + "updated": "2018-07-20T15:27:00.995Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 63, "fields": { - "created": "2018-07-20T15:27:01.061Z", - "updated": "2018-07-20T15:27:01.061Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.061Z", + "updated": "2018-07-20T15:27:01.061Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 64, "fields": { - "created": "2018-07-20T15:27:01.072Z", - "updated": "2018-07-20T15:27:01.072Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.072Z", + "updated": "2018-07-20T15:27:01.072Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 65, "fields": { - "created": "2018-07-20T15:27:01.080Z", - "updated": "2018-07-20T15:27:01.080Z", - "project": 1, - "snapshot": null, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "16", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.080Z", + "updated": "2018-07-20T15:27:01.080Z", + "project": 1, + "snapshot": null, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "16", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 66, "fields": { - "created": "2018-07-20T15:27:01.087Z", - "updated": "2018-07-20T15:27:01.087Z", - "project": 1, - "snapshot": null, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.087Z", + "updated": "2018-07-20T15:27:01.087Z", + "project": 1, + "snapshot": null, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 67, "fields": { - "created": "2018-07-20T15:27:01.090Z", - "updated": "2018-07-20T15:27:01.090Z", - "project": 1, - "snapshot": null, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.090Z", + "updated": "2018-07-20T15:27:01.090Z", + "project": 1, + "snapshot": null, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 68, "fields": { - "created": "2018-07-20T15:27:01.093Z", - "updated": "2018-07-20T15:27:01.093Z", - "project": 1, - "snapshot": null, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "31", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.093Z", + "updated": "2018-07-20T15:27:01.093Z", + "project": 1, + "snapshot": null, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "31", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 69, "fields": { - "created": "2018-07-20T15:27:01.110Z", - "updated": "2018-07-20T15:27:01.110Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.110Z", + "updated": "2018-07-20T15:27:01.110Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 70, "fields": { - "created": "2018-07-20T15:27:01.126Z", - "updated": "2018-07-20T15:27:01.126Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.126Z", + "updated": "2018-07-20T15:27:01.126Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 71, "fields": { - "created": "2018-07-20T15:27:01.133Z", - "updated": "2018-07-20T15:27:01.133Z", - "project": 1, - "snapshot": null, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.133Z", + "updated": "2018-07-20T15:27:01.133Z", + "project": 1, + "snapshot": null, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 72, "fields": { - "created": "2018-07-20T15:27:01.151Z", - "updated": "2018-07-20T15:27:01.151Z", - "project": 1, - "snapshot": null, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.151Z", + "updated": "2018-07-20T15:27:01.151Z", + "project": 1, + "snapshot": null, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 73, "fields": { - "created": "2018-07-20T15:27:01.189Z", - "updated": "2018-07-20T15:27:01.189Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.189Z", + "updated": "2018-07-20T15:27:01.189Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 74, "fields": { - "created": "2018-07-20T15:27:01.190Z", - "updated": "2018-07-20T15:27:01.190Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.190Z", + "updated": "2018-07-20T15:27:01.190Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 75, "fields": { - "created": "2018-07-20T15:27:01.191Z", - "updated": "2018-07-20T15:27:01.191Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.191Z", + "updated": "2018-07-20T15:27:01.191Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 76, "fields": { - "created": "2018-07-20T15:27:01.213Z", - "updated": "2018-07-20T15:27:01.213Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.213Z", + "updated": "2018-07-20T15:27:01.213Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 77, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2018-07-20T15:27:01.233Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.233Z", + "updated": "2018-07-20T15:27:01.233Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 78, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2018-07-20T15:27:01.233Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.233Z", + "updated": "2018-07-20T15:27:01.233Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 79, "fields": { - "created": "2018-07-20T15:27:01.247Z", - "updated": "2018-07-20T15:27:01.247Z", - "project": 1, - "snapshot": null, - "attribute": 68, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.247Z", + "updated": "2018-07-20T15:27:01.247Z", + "project": 1, + "snapshot": null, + "attribute": 68, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 80, "fields": { - "created": "2018-07-20T15:27:01.256Z", - "updated": "2018-07-20T15:27:01.256Z", - "project": 1, - "snapshot": null, - "attribute": 67, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "86", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.256Z", + "updated": "2018-07-20T15:27:01.256Z", + "project": 1, + "snapshot": null, + "attribute": 67, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "86", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 81, "fields": { - "created": "2018-07-20T15:27:01.265Z", - "updated": "2018-07-20T15:27:01.265Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-10-07T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.265Z", + "updated": "2018-07-20T15:27:01.265Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-10-07T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 82, "fields": { - "created": "2018-07-20T15:27:01.277Z", - "updated": "2018-07-20T15:27:01.277Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "2018-11-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.277Z", + "updated": "2018-07-20T15:27:01.277Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "2018-11-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 83, "fields": { - "created": "2018-07-20T15:27:01.282Z", - "updated": "2018-07-20T15:27:01.282Z", - "project": 1, - "snapshot": null, - "attribute": 78, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.282Z", + "updated": "2018-07-20T15:27:01.282Z", + "project": 1, + "snapshot": null, + "attribute": 78, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 84, "fields": { - "created": "2018-07-23T11:10:30.841Z", - "updated": "2018-08-30T12:10:29.720Z", - "project": 1, - "snapshot": null, - "attribute": 79, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "First", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:10:30.841Z", + "updated": "2018-08-30T12:10:29.720Z", + "project": 1, + "snapshot": null, + "attribute": 79, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "First", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 85, "fields": { - "created": "2018-07-23T11:10:33.797Z", - "updated": "2018-08-30T12:10:34.986Z", - "project": 1, - "snapshot": null, - "attribute": 79, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Second", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:10:33.797Z", + "updated": "2018-08-30T12:10:34.986Z", + "project": 1, + "snapshot": null, + "attribute": 79, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Second", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 86, "fields": { - "created": "2018-07-23T11:29:20.935Z", - "updated": "2018-07-31T11:15:48.762Z", - "project": 1, - "snapshot": null, - "attribute": 81, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "test", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:29:20.935Z", + "updated": "2018-07-31T11:15:48.762Z", + "project": 1, + "snapshot": null, + "attribute": 81, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "test", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 87, "fields": { - "created": "2018-07-23T11:30:48.237Z", - "updated": "2018-07-31T11:43:43.080Z", - "project": 1, - "snapshot": null, - "attribute": 82, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:30:48.237Z", + "updated": "2018-07-31T11:43:43.080Z", + "project": 1, + "snapshot": null, + "attribute": 82, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 88, "fields": { - "created": "2018-08-30T12:09:19.778Z", - "updated": "2018-08-30T12:09:19.778Z", - "project": 1, - "snapshot": 1, - "attribute": 82, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.778Z", + "updated": "2018-08-30T12:09:19.778Z", + "project": 1, + "snapshot": 1, + "attribute": 82, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 89, "fields": { - "created": "2018-08-30T12:09:19.780Z", - "updated": "2018-08-30T12:09:19.780Z", - "project": 1, - "snapshot": 1, - "attribute": 81, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "test", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.780Z", + "updated": "2018-08-30T12:09:19.780Z", + "project": 1, + "snapshot": 1, + "attribute": 81, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "test", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 90, "fields": { - "created": "2018-08-30T12:09:19.781Z", - "updated": "2018-08-30T12:09:19.781Z", - "project": 1, - "snapshot": 1, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.781Z", + "updated": "2018-08-30T12:09:19.781Z", + "project": 1, + "snapshot": 1, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 91, "fields": { - "created": "2018-08-30T12:09:19.781Z", - "updated": "2018-08-30T12:09:19.781Z", - "project": 1, - "snapshot": 1, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.781Z", + "updated": "2018-08-30T12:09:19.781Z", + "project": 1, + "snapshot": 1, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 92, "fields": { - "created": "2018-08-30T12:09:19.782Z", - "updated": "2018-08-30T12:09:19.782Z", - "project": 1, - "snapshot": 1, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.782Z", + "updated": "2018-08-30T12:09:19.782Z", + "project": 1, + "snapshot": 1, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 93, "fields": { - "created": "2018-08-30T12:09:19.783Z", - "updated": "2018-08-30T12:09:19.783Z", - "project": 1, - "snapshot": 1, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.783Z", + "updated": "2018-08-30T12:09:19.783Z", + "project": 1, + "snapshot": 1, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 94, "fields": { - "created": "2018-08-30T12:09:19.783Z", - "updated": "2018-08-30T12:09:19.783Z", - "project": 1, - "snapshot": 1, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.783Z", + "updated": "2018-08-30T12:09:19.783Z", + "project": 1, + "snapshot": 1, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 95, "fields": { - "created": "2018-08-30T12:09:19.784Z", - "updated": "2018-08-30T12:09:19.784Z", - "project": 1, - "snapshot": 1, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2017-04-01T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.784Z", + "updated": "2018-08-30T12:09:19.784Z", + "project": 1, + "snapshot": 1, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2017-04-01T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 96, "fields": { - "created": "2018-08-30T12:09:19.785Z", - "updated": "2018-08-30T12:09:19.785Z", - "project": 1, - "snapshot": 1, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2017-04-02T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.785Z", + "updated": "2018-08-30T12:09:19.785Z", + "project": 1, + "snapshot": 1, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2017-04-02T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 97, "fields": { - "created": "2018-08-30T12:09:19.786Z", - "updated": "2018-08-30T12:09:19.786Z", - "project": 1, - "snapshot": 1, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "2017-04-03T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.786Z", + "updated": "2018-08-30T12:09:19.786Z", + "project": 1, + "snapshot": 1, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "2017-04-03T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 98, "fields": { - "created": "2018-08-30T12:09:19.786Z", - "updated": "2018-08-30T12:09:19.786Z", - "project": 1, - "snapshot": 1, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.786Z", + "updated": "2018-08-30T12:09:19.786Z", + "project": 1, + "snapshot": 1, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 99, "fields": { - "created": "2018-08-30T12:09:19.787Z", - "updated": "2018-08-30T12:09:19.787Z", - "project": 1, - "snapshot": 1, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.787Z", + "updated": "2018-08-30T12:09:19.787Z", + "project": 1, + "snapshot": 1, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 100, "fields": { - "created": "2018-08-30T12:09:19.787Z", - "updated": "2018-08-30T12:09:19.787Z", - "project": 1, - "snapshot": 1, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.787Z", + "updated": "2018-08-30T12:09:19.787Z", + "project": 1, + "snapshot": 1, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 101, "fields": { - "created": "2018-08-30T12:09:19.788Z", - "updated": "2018-08-30T12:09:19.788Z", - "project": 1, - "snapshot": 1, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.788Z", + "updated": "2018-08-30T12:09:19.788Z", + "project": 1, + "snapshot": 1, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 102, "fields": { - "created": "2018-08-30T12:09:19.788Z", - "updated": "2018-08-30T12:09:19.788Z", - "project": 1, - "snapshot": 1, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "50", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.788Z", + "updated": "2018-08-30T12:09:19.788Z", + "project": 1, + "snapshot": 1, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "50", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 103, "fields": { - "created": "2018-08-30T12:09:19.788Z", - "updated": "2018-08-30T12:09:19.788Z", - "project": 1, - "snapshot": 1, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "100", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.788Z", + "updated": "2018-08-30T12:09:19.788Z", + "project": 1, + "snapshot": 1, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "100", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 104, "fields": { - "created": "2018-08-30T12:09:19.789Z", - "updated": "2018-08-30T12:09:19.789Z", - "project": 1, - "snapshot": 1, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.789Z", + "updated": "2018-08-30T12:09:19.789Z", + "project": 1, + "snapshot": 1, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 105, "fields": { - "created": "2018-08-30T12:09:19.789Z", - "updated": "2018-08-30T12:09:19.789Z", - "project": 1, - "snapshot": 1, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.789Z", + "updated": "2018-08-30T12:09:19.789Z", + "project": 1, + "snapshot": 1, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 106, "fields": { - "created": "2018-08-30T12:09:19.790Z", - "updated": "2018-08-30T12:09:19.790Z", - "project": 1, - "snapshot": 1, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.790Z", + "updated": "2018-08-30T12:09:19.790Z", + "project": 1, + "snapshot": 1, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 107, "fields": { - "created": "2018-08-30T12:09:19.790Z", - "updated": "2018-08-30T12:09:19.790Z", - "project": 1, - "snapshot": 1, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.790Z", + "updated": "2018-08-30T12:09:19.790Z", + "project": 1, + "snapshot": 1, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 108, "fields": { - "created": "2018-08-30T12:09:19.791Z", - "updated": "2018-08-30T12:09:19.791Z", - "project": 1, - "snapshot": 1, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.791Z", + "updated": "2018-08-30T12:09:19.791Z", + "project": 1, + "snapshot": 1, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 109, "fields": { - "created": "2018-08-30T12:09:19.791Z", - "updated": "2018-08-30T12:09:19.791Z", - "project": 1, - "snapshot": 1, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.791Z", + "updated": "2018-08-30T12:09:19.791Z", + "project": 1, + "snapshot": 1, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 110, "fields": { - "created": "2018-08-30T12:09:19.792Z", - "updated": "2018-08-30T12:09:19.792Z", - "project": 1, - "snapshot": 1, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.792Z", + "updated": "2018-08-30T12:09:19.792Z", + "project": 1, + "snapshot": 1, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 111, "fields": { - "created": "2018-08-30T12:09:19.792Z", - "updated": "2018-08-30T12:09:19.792Z", - "project": 1, - "snapshot": 1, - "attribute": 8, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.792Z", + "updated": "2018-08-30T12:09:19.792Z", + "project": 1, + "snapshot": 1, + "attribute": 8, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 112, "fields": { - "created": "2018-08-30T12:09:19.793Z", - "updated": "2018-08-30T12:09:19.793Z", - "project": 1, - "snapshot": 1, - "attribute": 9, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-01T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.793Z", + "updated": "2018-08-30T12:09:19.793Z", + "project": 1, + "snapshot": 1, + "attribute": 9, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-01T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 113, "fields": { - "created": "2018-08-30T12:09:19.793Z", - "updated": "2018-08-30T12:09:19.793Z", - "project": 1, - "snapshot": 1, - "attribute": 11, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum", - "option": 7, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.793Z", + "updated": "2018-08-30T12:09:19.793Z", + "project": 1, + "snapshot": 1, + "attribute": 11, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum", + "option": 7, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 114, "fields": { - "created": "2018-08-30T12:09:19.793Z", - "updated": "2018-08-30T12:09:19.793Z", - "project": 1, - "snapshot": 1, - "attribute": 7, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "37", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.793Z", + "updated": "2018-08-30T12:09:19.793Z", + "project": 1, + "snapshot": 1, + "attribute": 7, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "37", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 115, "fields": { - "created": "2018-08-30T12:09:19.794Z", - "updated": "2018-08-30T12:09:19.794Z", - "project": 1, - "snapshot": 1, - "attribute": 12, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.794Z", + "updated": "2018-08-30T12:09:19.794Z", + "project": 1, + "snapshot": 1, + "attribute": 12, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 116, "fields": { - "created": "2018-08-30T12:09:19.795Z", - "updated": "2018-08-30T12:09:19.795Z", - "project": 1, - "snapshot": 1, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.795Z", + "updated": "2018-08-30T12:09:19.795Z", + "project": 1, + "snapshot": 1, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 117, "fields": { - "created": "2018-08-30T12:09:19.796Z", - "updated": "2018-08-30T12:09:19.796Z", - "project": 1, - "snapshot": 1, - "attribute": 4, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.796Z", + "updated": "2018-08-30T12:09:19.796Z", + "project": 1, + "snapshot": 1, + "attribute": 4, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 118, "fields": { - "created": "2018-08-30T12:09:19.797Z", - "updated": "2018-08-30T12:09:19.797Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.797Z", + "updated": "2018-08-30T12:09:19.797Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 119, "fields": { - "created": "2018-08-30T12:09:19.798Z", - "updated": "2018-08-30T12:09:19.798Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.798Z", + "updated": "2018-08-30T12:09:19.798Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 120, "fields": { - "created": "2018-08-30T12:09:19.798Z", - "updated": "2018-08-30T12:09:19.798Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.798Z", + "updated": "2018-08-30T12:09:19.798Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 121, "fields": { - "created": "2018-08-30T12:09:19.799Z", - "updated": "2018-08-30T12:09:19.799Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.799Z", + "updated": "2018-08-30T12:09:19.799Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 122, "fields": { - "created": "2018-08-30T12:09:19.799Z", - "updated": "2018-08-30T12:09:19.799Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.799Z", + "updated": "2018-08-30T12:09:19.799Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 123, "fields": { - "created": "2018-08-30T12:09:19.800Z", - "updated": "2018-08-30T12:09:19.800Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.800Z", + "updated": "2018-08-30T12:09:19.800Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 124, "fields": { - "created": "2018-08-30T12:09:19.801Z", - "updated": "2018-08-30T12:09:19.801Z", - "project": 1, - "snapshot": 1, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.801Z", + "updated": "2018-08-30T12:09:19.801Z", + "project": 1, + "snapshot": 1, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 125, "fields": { - "created": "2018-08-30T12:09:19.802Z", - "updated": "2018-08-30T12:09:19.802Z", - "project": 1, - "snapshot": 1, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.802Z", + "updated": "2018-08-30T12:09:19.802Z", + "project": 1, + "snapshot": 1, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 126, "fields": { - "created": "2018-08-30T12:09:19.802Z", - "updated": "2018-08-30T12:09:19.802Z", - "project": 1, - "snapshot": 1, - "attribute": 78, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.802Z", + "updated": "2018-08-30T12:09:19.802Z", + "project": 1, + "snapshot": 1, + "attribute": 78, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 127, "fields": { - "created": "2018-08-30T12:09:19.803Z", - "updated": "2018-08-30T12:09:19.803Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.803Z", + "updated": "2018-08-30T12:09:19.803Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 128, "fields": { - "created": "2018-08-30T12:09:19.803Z", - "updated": "2018-08-30T12:09:19.803Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.803Z", + "updated": "2018-08-30T12:09:19.803Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 129, "fields": { - "created": "2018-08-30T12:09:19.804Z", - "updated": "2018-08-30T12:09:19.804Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-10-07T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.804Z", + "updated": "2018-08-30T12:09:19.804Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-10-07T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 130, "fields": { - "created": "2018-08-30T12:09:19.804Z", - "updated": "2018-08-30T12:09:19.804Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "2018-11-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.804Z", + "updated": "2018-08-30T12:09:19.804Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "2018-11-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 131, "fields": { - "created": "2018-08-30T12:09:19.805Z", - "updated": "2018-08-30T12:09:19.805Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.805Z", + "updated": "2018-08-30T12:09:19.805Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 132, "fields": { - "created": "2018-08-30T12:09:19.805Z", - "updated": "2018-08-30T12:09:19.805Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.805Z", + "updated": "2018-08-30T12:09:19.805Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 133, "fields": { - "created": "2018-08-30T12:09:19.806Z", - "updated": "2018-08-30T12:09:19.806Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.806Z", + "updated": "2018-08-30T12:09:19.806Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 134, "fields": { - "created": "2018-08-30T12:09:19.806Z", - "updated": "2018-08-30T12:09:19.806Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.806Z", + "updated": "2018-08-30T12:09:19.806Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 135, "fields": { - "created": "2018-08-30T12:09:19.807Z", - "updated": "2018-08-30T12:09:19.807Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.807Z", + "updated": "2018-08-30T12:09:19.807Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 136, "fields": { - "created": "2018-08-30T12:09:19.807Z", - "updated": "2018-08-30T12:09:19.807Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.807Z", + "updated": "2018-08-30T12:09:19.807Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 137, "fields": { - "created": "2018-08-30T12:09:19.808Z", - "updated": "2018-08-30T12:09:19.808Z", - "project": 1, - "snapshot": 1, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "16", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.808Z", + "updated": "2018-08-30T12:09:19.808Z", + "project": 1, + "snapshot": 1, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "16", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 138, "fields": { - "created": "2018-08-30T12:09:19.809Z", - "updated": "2018-08-30T12:09:19.809Z", - "project": 1, - "snapshot": 1, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "31", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.809Z", + "updated": "2018-08-30T12:09:19.809Z", + "project": 1, + "snapshot": 1, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "31", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 139, "fields": { - "created": "2018-08-30T12:09:19.810Z", - "updated": "2018-08-30T12:09:19.810Z", - "project": 1, - "snapshot": 1, - "attribute": 67, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "86", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.810Z", + "updated": "2018-08-30T12:09:19.810Z", + "project": 1, + "snapshot": 1, + "attribute": 67, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "86", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 140, "fields": { - "created": "2018-08-30T12:09:19.810Z", - "updated": "2018-08-30T12:09:19.810Z", - "project": 1, - "snapshot": 1, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.810Z", + "updated": "2018-08-30T12:09:19.810Z", + "project": 1, + "snapshot": 1, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 141, "fields": { - "created": "2018-08-30T12:09:19.811Z", - "updated": "2018-08-30T12:09:19.811Z", - "project": 1, - "snapshot": 1, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.811Z", + "updated": "2018-08-30T12:09:19.811Z", + "project": 1, + "snapshot": 1, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 142, "fields": { - "created": "2018-08-30T12:09:19.812Z", - "updated": "2018-08-30T12:09:19.812Z", - "project": 1, - "snapshot": 1, - "attribute": 68, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.812Z", + "updated": "2018-08-30T12:09:19.812Z", + "project": 1, + "snapshot": 1, + "attribute": 68, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 143, "fields": { - "created": "2018-08-30T12:09:19.812Z", - "updated": "2018-08-30T12:09:19.812Z", - "project": 1, - "snapshot": 1, - "attribute": 47, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.812Z", + "updated": "2018-08-30T12:09:19.812Z", + "project": 1, + "snapshot": 1, + "attribute": 47, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 144, "fields": { - "created": "2018-08-30T12:09:19.813Z", - "updated": "2018-08-30T12:09:19.813Z", - "project": 1, - "snapshot": 1, - "attribute": 47, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.813Z", + "updated": "2018-08-30T12:09:19.813Z", + "project": 1, + "snapshot": 1, + "attribute": 47, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 145, "fields": { - "created": "2018-08-30T12:09:19.813Z", - "updated": "2018-08-30T12:09:19.813Z", - "project": 1, - "snapshot": 1, - "attribute": 48, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.813Z", + "updated": "2018-08-30T12:09:19.813Z", + "project": 1, + "snapshot": 1, + "attribute": 48, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 146, "fields": { - "created": "2018-08-30T12:09:19.814Z", - "updated": "2018-08-30T12:09:19.814Z", - "project": 1, - "snapshot": 1, - "attribute": 48, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.814Z", + "updated": "2018-08-30T12:09:19.814Z", + "project": 1, + "snapshot": 1, + "attribute": 48, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 147, "fields": { - "created": "2018-08-30T12:09:19.814Z", - "updated": "2018-08-30T12:09:19.814Z", - "project": 1, - "snapshot": 1, - "attribute": 79, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.814Z", + "updated": "2018-08-30T12:09:19.814Z", + "project": 1, + "snapshot": 1, + "attribute": 79, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 148, "fields": { - "created": "2018-08-30T12:09:19.815Z", - "updated": "2018-08-30T12:09:19.815Z", - "project": 1, - "snapshot": 1, - "attribute": 79, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.815Z", + "updated": "2018-08-30T12:09:19.815Z", + "project": 1, + "snapshot": 1, + "attribute": 79, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 149, "fields": { - "created": "2018-08-30T12:09:19.815Z", - "updated": "2018-08-30T12:09:19.815Z", - "project": 1, - "snapshot": 1, - "attribute": 70, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.815Z", + "updated": "2018-08-30T12:09:19.815Z", + "project": 1, + "snapshot": 1, + "attribute": 70, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 150, "fields": { - "created": "2018-08-30T12:09:19.816Z", - "updated": "2018-08-30T12:09:19.816Z", - "project": 1, - "snapshot": 1, - "attribute": 70, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.816Z", + "updated": "2018-08-30T12:09:19.816Z", + "project": 1, + "snapshot": 1, + "attribute": 70, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 151, "fields": { - "created": "2018-08-30T12:09:19.816Z", - "updated": "2018-08-30T12:09:19.816Z", - "project": 1, - "snapshot": 1, - "attribute": 71, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.816Z", + "updated": "2018-08-30T12:09:19.816Z", + "project": 1, + "snapshot": 1, + "attribute": 71, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 152, "fields": { - "created": "2018-08-30T12:09:19.817Z", - "updated": "2018-08-30T12:09:19.817Z", - "project": 1, - "snapshot": 1, - "attribute": 71, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.817Z", + "updated": "2018-08-30T12:09:19.817Z", + "project": 1, + "snapshot": 1, + "attribute": 71, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 153, "fields": { - "created": "2018-08-30T12:09:19.818Z", - "updated": "2018-08-30T12:09:19.818Z", - "project": 1, - "snapshot": 1, - "attribute": 74, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.818Z", + "updated": "2018-08-30T12:09:19.818Z", + "project": 1, + "snapshot": 1, + "attribute": 74, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 154, "fields": { - "created": "2018-08-30T12:09:19.819Z", - "updated": "2018-08-30T12:09:19.819Z", - "project": 1, - "snapshot": 1, - "attribute": 74, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.819Z", + "updated": "2018-08-30T12:09:19.819Z", + "project": 1, + "snapshot": 1, + "attribute": 74, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 155, "fields": { - "created": "2018-08-30T12:09:19.819Z", - "updated": "2018-08-30T12:09:19.819Z", - "project": 1, - "snapshot": 1, - "attribute": 75, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.819Z", + "updated": "2018-08-30T12:09:19.819Z", + "project": 1, + "snapshot": 1, + "attribute": 75, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 156, "fields": { - "created": "2018-08-30T12:09:19.820Z", - "updated": "2018-08-30T12:09:19.820Z", - "project": 1, - "snapshot": 1, - "attribute": 75, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.820Z", + "updated": "2018-08-30T12:09:19.820Z", + "project": 1, + "snapshot": 1, + "attribute": 75, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 157, "fields": { - "created": "2018-08-30T12:09:19.820Z", - "updated": "2018-08-30T12:09:19.820Z", - "project": 1, - "snapshot": 1, - "attribute": 76, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.820Z", + "updated": "2018-08-30T12:09:19.820Z", + "project": 1, + "snapshot": 1, + "attribute": 76, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 158, "fields": { - "created": "2018-08-30T12:09:19.821Z", - "updated": "2018-08-30T12:09:19.821Z", - "project": 1, - "snapshot": 1, - "attribute": 76, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.821Z", + "updated": "2018-08-30T12:09:19.821Z", + "project": 1, + "snapshot": 1, + "attribute": 76, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 159, "fields": { - "created": "2018-08-30T12:09:19.821Z", - "updated": "2018-08-30T12:09:19.821Z", - "project": 1, - "snapshot": 1, - "attribute": 49, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.821Z", + "updated": "2018-08-30T12:09:19.821Z", + "project": 1, + "snapshot": 1, + "attribute": 49, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 160, "fields": { - "created": "2018-08-30T12:09:19.821Z", - "updated": "2018-08-30T12:09:19.821Z", - "project": 1, - "snapshot": 1, - "attribute": 49, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.821Z", + "updated": "2018-08-30T12:09:19.821Z", + "project": 1, + "snapshot": 1, + "attribute": 49, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 161, "fields": { - "created": "2018-08-30T12:09:19.822Z", - "updated": "2018-08-30T12:09:19.822Z", - "project": 1, - "snapshot": 1, - "attribute": 50, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.822Z", + "updated": "2018-08-30T12:09:19.822Z", + "project": 1, + "snapshot": 1, + "attribute": 50, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 162, "fields": { - "created": "2018-08-30T12:09:19.822Z", - "updated": "2018-08-30T12:09:19.822Z", - "project": 1, - "snapshot": 1, - "attribute": 50, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-08-30T12:09:19.822Z", + "updated": "2018-08-30T12:09:19.822Z", + "project": 1, + "snapshot": 1, + "attribute": 50, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 238, "fields": { - "created": "2020-11-12T13:16:06.602Z", - "updated": "2020-11-17T14:47:31.645Z", - "project": 1, - "snapshot": null, - "attribute": 96, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "projects/1/values/238/rdmo-logo.svg", - "value_type": "file", - "unit": "", - "external_id": "" - } - }, - { + "created": "2020-11-12T13:16:06.602Z", + "updated": "2020-11-17T14:47:31.645Z", + "project": 1, + "snapshot": null, + "attribute": 96, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "projects/1/values/238/rdmo-logo.svg", + "value_type": "file", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 240, "fields": { - "created": "2020-11-12T13:22:54.747Z", - "updated": "2020-11-17T14:47:25.398Z", - "project": 1, - "snapshot": null, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": null, - "file": "projects/1/values/240/test.txt", - "value_type": "file", - "unit": "", - "external_id": "" - } - }, - { + "created": "2020-11-12T13:22:54.747Z", + "updated": "2020-11-17T14:47:25.398Z", + "project": 1, + "snapshot": null, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": null, + "file": "projects/1/values/240/test.txt", + "value_type": "file", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 241, "fields": { - "created": "2020-11-17T14:47:25.399Z", - "updated": "2020-11-17T14:47:25.430Z", - "project": 1, - "snapshot": null, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": null, - "file": "projects/1/values/241/favicon.png", - "value_type": "file", - "unit": "", - "external_id": "" - } - }, - { + "created": "2020-11-17T14:47:25.399Z", + "updated": "2020-11-17T14:47:25.430Z", + "project": 1, + "snapshot": null, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": null, + "file": "projects/1/values/241/favicon.png", + "value_type": "file", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 242, "fields": { - "created": "2021-01-07T12:45:23.066Z", - "updated": "2021-01-07T12:45:23.066Z", - "project": 2, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:45:23.066Z", + "updated": "2021-01-07T12:45:23.066Z", + "project": 2, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 243, "fields": { - "created": "2021-01-07T12:45:23.066Z", - "updated": "2021-01-07T13:00:55.211Z", - "project": 2, - "snapshot": 3, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:45:23.066Z", + "updated": "2021-01-07T13:00:55.211Z", + "project": 2, + "snapshot": 3, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 244, "fields": { - "created": "2021-01-07T12:45:41.219Z", - "updated": "2021-01-07T13:00:59.681Z", - "project": 3, - "snapshot": 4, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:45:41.219Z", + "updated": "2021-01-07T13:00:59.681Z", + "project": 3, + "snapshot": 4, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 245, "fields": { - "created": "2021-01-07T12:45:55.807Z", - "updated": "2021-01-07T13:01:03.909Z", - "project": 4, - "snapshot": 5, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:45:55.807Z", + "updated": "2021-01-07T13:01:03.909Z", + "project": 4, + "snapshot": 5, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 246, "fields": { - "created": "2021-01-07T12:46:08.904Z", - "updated": "2021-01-07T13:01:08.386Z", - "project": 5, - "snapshot": 6, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:46:08.904Z", + "updated": "2021-01-07T13:01:08.386Z", + "project": 5, + "snapshot": 6, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 247, "fields": { - "created": "2021-01-07T12:45:41.219Z", - "updated": "2021-01-07T15:39:24.164Z", - "project": 3, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:45:41.219Z", + "updated": "2021-01-07T15:39:24.164Z", + "project": 3, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 248, "fields": { - "created": "2021-01-07T12:45:55.807Z", - "updated": "2021-01-07T15:39:39.388Z", - "project": 4, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:45:55.807Z", + "updated": "2021-01-07T15:39:39.388Z", + "project": 4, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 249, "fields": { - "created": "2021-01-07T12:46:08.904Z", - "updated": "2021-01-07T15:39:43.132Z", - "project": 5, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-01-07T12:46:08.904Z", + "updated": "2021-01-07T15:39:43.132Z", + "project": 5, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 328, "fields": { - "created": "2018-07-23T11:30:48.237Z", - "updated": "2021-02-21T12:32:42.707Z", - "project": 1, - "snapshot": 7, - "attribute": 82, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:30:48.237Z", + "updated": "2021-02-21T12:32:42.707Z", + "project": 1, + "snapshot": 7, + "attribute": 82, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 329, "fields": { - "created": "2018-07-23T11:29:20.935Z", - "updated": "2021-02-21T12:32:42.715Z", - "project": 1, - "snapshot": 7, - "attribute": 81, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "test", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:29:20.935Z", + "updated": "2021-02-21T12:32:42.715Z", + "project": 1, + "snapshot": 7, + "attribute": 81, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "test", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 330, "fields": { - "created": "2017-04-25T14:54:01.087Z", - "updated": "2021-02-21T12:32:42.721Z", - "project": 1, - "snapshot": 7, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:01.087Z", + "updated": "2021-02-21T12:32:42.721Z", + "project": 1, + "snapshot": 7, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 331, "fields": { - "created": "2017-04-25T14:54:01.077Z", - "updated": "2021-02-21T12:32:42.728Z", - "project": 1, - "snapshot": 7, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:01.077Z", + "updated": "2021-02-21T12:32:42.728Z", + "project": 1, + "snapshot": 7, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 332, "fields": { - "created": "2017-04-25T14:54:01.088Z", - "updated": "2021-02-21T12:32:42.735Z", - "project": 1, - "snapshot": 7, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:01.088Z", + "updated": "2021-02-21T12:32:42.735Z", + "project": 1, + "snapshot": 7, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 333, "fields": { - "created": "2017-04-25T14:55:11.016Z", - "updated": "2021-02-21T12:32:42.742Z", - "project": 1, - "snapshot": 7, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:11.016Z", + "updated": "2021-02-21T12:32:42.742Z", + "project": 1, + "snapshot": 7, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 334, "fields": { - "created": "2018-07-20T15:08:22.495Z", - "updated": "2021-02-21T12:32:42.749Z", - "project": 1, - "snapshot": 7, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:22.495Z", + "updated": "2021-02-21T12:32:42.749Z", + "project": 1, + "snapshot": 7, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 335, "fields": { - "created": "2017-04-25T14:55:06.073Z", - "updated": "2021-02-21T12:32:42.756Z", - "project": 1, - "snapshot": 7, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2017-04-01T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:06.073Z", + "updated": "2021-02-21T12:32:42.756Z", + "project": 1, + "snapshot": 7, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2017-04-01T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 336, "fields": { - "created": "2017-04-25T14:55:06.062Z", - "updated": "2021-02-21T12:32:42.761Z", - "project": 1, - "snapshot": 7, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2017-04-02T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:06.062Z", + "updated": "2021-02-21T12:32:42.761Z", + "project": 1, + "snapshot": 7, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2017-04-02T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 337, "fields": { - "created": "2017-04-25T14:55:06.075Z", - "updated": "2021-02-21T12:32:42.766Z", - "project": 1, - "snapshot": 7, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "2017-04-03T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:06.075Z", + "updated": "2021-02-21T12:32:42.766Z", + "project": 1, + "snapshot": 7, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "2017-04-03T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 338, "fields": { - "created": "2020-11-12T13:22:54.747Z", - "updated": "2021-02-21T12:32:42.780Z", - "project": 1, - "snapshot": 7, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": null, - "file": "projects/1/snapshots/7/values/338/test.txt", - "value_type": "file", - "unit": "", - "external_id": "" - } - }, - { + "created": "2020-11-12T13:22:54.747Z", + "updated": "2021-02-21T12:32:42.780Z", + "project": 1, + "snapshot": 7, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": null, + "file": "projects/1/snapshots/7/values/338/test.txt", + "value_type": "file", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 339, "fields": { - "created": "2020-11-17T14:47:25.399Z", - "updated": "2021-02-21T12:32:42.792Z", - "project": 1, - "snapshot": 7, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": null, - "file": "projects/1/snapshots/7/values/339/favicon.png", - "value_type": "file", - "unit": "", - "external_id": "" - } - }, - { + "created": "2020-11-17T14:47:25.399Z", + "updated": "2021-02-21T12:32:42.792Z", + "project": 1, + "snapshot": 7, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": null, + "file": "projects/1/snapshots/7/values/339/favicon.png", + "value_type": "file", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 340, "fields": { - "created": "2017-04-25T14:54:41.844Z", - "updated": "2021-02-21T12:32:42.798Z", - "project": 1, - "snapshot": 7, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:41.844Z", + "updated": "2021-02-21T12:32:42.798Z", + "project": 1, + "snapshot": 7, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 341, "fields": { - "created": "2017-04-25T14:54:41.842Z", - "updated": "2021-02-21T12:32:42.805Z", - "project": 1, - "snapshot": 7, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:41.842Z", + "updated": "2021-02-21T12:32:42.805Z", + "project": 1, + "snapshot": 7, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 342, "fields": { - "created": "2017-04-25T14:54:41.838Z", - "updated": "2021-02-21T12:32:42.810Z", - "project": 1, - "snapshot": 7, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:41.838Z", + "updated": "2021-02-21T12:32:42.810Z", + "project": 1, + "snapshot": 7, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 343, "fields": { - "created": "2017-04-25T14:54:57.682Z", - "updated": "2021-02-21T12:32:42.816Z", - "project": 1, - "snapshot": 7, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:57.682Z", + "updated": "2021-02-21T12:32:42.816Z", + "project": 1, + "snapshot": 7, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 344, "fields": { - "created": "2017-04-25T14:54:57.674Z", - "updated": "2021-02-21T12:32:42.823Z", - "project": 1, - "snapshot": 7, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "50", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:57.674Z", + "updated": "2021-02-21T12:32:42.823Z", + "project": 1, + "snapshot": 7, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "50", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 345, "fields": { - "created": "2017-04-25T14:54:57.685Z", - "updated": "2021-02-21T12:32:42.836Z", - "project": 1, - "snapshot": 7, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "100", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:57.685Z", + "updated": "2021-02-21T12:32:42.836Z", + "project": 1, + "snapshot": 7, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "100", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 346, "fields": { - "created": "2017-04-25T14:54:48.751Z", - "updated": "2021-02-21T12:32:42.846Z", - "project": 1, - "snapshot": 7, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:48.751Z", + "updated": "2021-02-21T12:32:42.846Z", + "project": 1, + "snapshot": 7, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 347, "fields": { - "created": "2017-04-25T14:54:48.745Z", - "updated": "2021-02-21T12:32:42.863Z", - "project": 1, - "snapshot": 7, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:48.745Z", + "updated": "2021-02-21T12:32:42.863Z", + "project": 1, + "snapshot": 7, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 348, "fields": { - "created": "2017-04-25T14:54:48.750Z", - "updated": "2021-02-21T12:32:42.874Z", - "project": 1, - "snapshot": 7, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:54:48.750Z", + "updated": "2021-02-21T12:32:42.874Z", + "project": 1, + "snapshot": 7, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 349, "fields": { - "created": "2017-04-25T14:53:40.735Z", - "updated": "2021-02-21T12:32:42.886Z", - "project": 1, - "snapshot": 7, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:40.735Z", + "updated": "2021-02-21T12:32:42.886Z", + "project": 1, + "snapshot": 7, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 350, "fields": { - "created": "2017-04-25T14:53:40.744Z", - "updated": "2021-02-21T12:32:42.898Z", - "project": 1, - "snapshot": 7, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:40.744Z", + "updated": "2021-02-21T12:32:42.898Z", + "project": 1, + "snapshot": 7, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 351, "fields": { - "created": "2017-04-25T14:53:45.659Z", - "updated": "2021-02-21T12:32:42.907Z", - "project": 1, - "snapshot": 7, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:45.659Z", + "updated": "2021-02-21T12:32:42.907Z", + "project": 1, + "snapshot": 7, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 352, "fields": { - "created": "2017-04-25T14:53:56.532Z", - "updated": "2021-02-21T12:32:42.916Z", - "project": 1, - "snapshot": 7, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:56.532Z", + "updated": "2021-02-21T12:32:42.916Z", + "project": 1, + "snapshot": 7, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 353, "fields": { - "created": "2017-04-25T14:53:05.503Z", - "updated": "2021-02-21T12:32:42.927Z", - "project": 1, - "snapshot": 7, - "attribute": 8, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:05.503Z", + "updated": "2021-02-21T12:32:42.927Z", + "project": 1, + "snapshot": 7, + "attribute": 8, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 354, "fields": { - "created": "2017-04-25T14:53:30.134Z", - "updated": "2021-02-21T12:32:42.938Z", - "project": 1, - "snapshot": 7, - "attribute": 9, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-01T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:30.134Z", + "updated": "2021-02-21T12:32:42.938Z", + "project": 1, + "snapshot": 7, + "attribute": 9, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-01T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 355, "fields": { - "created": "2020-11-12T13:16:06.602Z", - "updated": "2021-02-21T12:32:42.959Z", - "project": 1, - "snapshot": 7, - "attribute": 96, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "projects/1/snapshots/7/values/355/rdmo-logo.svg", - "value_type": "file", - "unit": "", - "external_id": "" - } - }, - { + "created": "2020-11-12T13:16:06.602Z", + "updated": "2021-02-21T12:32:42.959Z", + "project": 1, + "snapshot": 7, + "attribute": 96, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "projects/1/snapshots/7/values/355/rdmo-logo.svg", + "value_type": "file", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 356, "fields": { - "created": "2017-04-25T14:53:12.956Z", - "updated": "2021-02-21T12:32:42.969Z", - "project": 1, - "snapshot": 7, - "attribute": 11, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum", - "option": 7, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:12.956Z", + "updated": "2021-02-21T12:32:42.969Z", + "project": 1, + "snapshot": 7, + "attribute": 11, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum", + "option": 7, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 357, "fields": { - "created": "2017-04-25T14:53:21.131Z", - "updated": "2021-02-21T12:32:42.980Z", - "project": 1, - "snapshot": 7, - "attribute": 7, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "37", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:21.131Z", + "updated": "2021-02-21T12:32:42.980Z", + "project": 1, + "snapshot": 7, + "attribute": 7, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "37", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 358, "fields": { - "created": "2017-04-25T14:53:15.855Z", - "updated": "2021-02-21T12:32:42.990Z", - "project": 1, - "snapshot": 7, - "attribute": 12, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:15.855Z", + "updated": "2021-02-21T12:32:42.990Z", + "project": 1, + "snapshot": 7, + "attribute": 12, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 359, "fields": { - "created": "2017-04-25T14:52:59.412Z", - "updated": "2021-02-21T12:32:43.001Z", - "project": 1, - "snapshot": 7, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:52:59.412Z", + "updated": "2021-02-21T12:32:43.001Z", + "project": 1, + "snapshot": 7, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 360, "fields": { - "created": "2017-04-25T14:53:03.399Z", - "updated": "2021-02-21T12:32:43.012Z", - "project": 1, - "snapshot": 7, - "attribute": 4, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:53:03.399Z", + "updated": "2021-02-21T12:32:43.012Z", + "project": 1, + "snapshot": 7, + "attribute": 4, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 361, "fields": { - "created": "2018-07-20T15:27:00.962Z", - "updated": "2021-02-21T12:32:43.023Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.962Z", + "updated": "2021-02-21T12:32:43.023Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 362, "fields": { - "created": "2018-07-20T15:27:00.981Z", - "updated": "2021-02-21T12:32:43.034Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.981Z", + "updated": "2021-02-21T12:32:43.034Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 363, "fields": { - "created": "2018-07-20T15:27:00.980Z", - "updated": "2021-02-21T12:32:43.045Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.980Z", + "updated": "2021-02-21T12:32:43.045Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 364, "fields": { - "created": "2018-07-20T15:27:01.189Z", - "updated": "2021-02-21T12:32:43.055Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.189Z", + "updated": "2021-02-21T12:32:43.055Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 365, "fields": { - "created": "2018-07-20T15:27:01.190Z", - "updated": "2021-02-21T12:32:43.065Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.190Z", + "updated": "2021-02-21T12:32:43.065Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 366, "fields": { - "created": "2018-07-20T15:27:01.191Z", - "updated": "2021-02-21T12:32:43.076Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.191Z", + "updated": "2021-02-21T12:32:43.076Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 367, "fields": { - "created": "2018-07-20T15:27:01.133Z", - "updated": "2021-02-21T12:32:43.087Z", - "project": 1, - "snapshot": 7, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.133Z", + "updated": "2021-02-21T12:32:43.087Z", + "project": 1, + "snapshot": 7, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 368, "fields": { - "created": "2018-07-20T15:27:01.151Z", - "updated": "2021-02-21T12:32:43.096Z", - "project": 1, - "snapshot": 7, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.151Z", + "updated": "2021-02-21T12:32:43.096Z", + "project": 1, + "snapshot": 7, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 369, "fields": { - "created": "2018-07-20T15:27:01.282Z", - "updated": "2021-02-21T12:32:43.103Z", - "project": 1, - "snapshot": 7, - "attribute": 78, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.282Z", + "updated": "2021-02-21T12:32:43.103Z", + "project": 1, + "snapshot": 7, + "attribute": 78, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 370, "fields": { - "created": "2018-07-20T15:27:01.110Z", - "updated": "2021-02-21T12:32:43.110Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.110Z", + "updated": "2021-02-21T12:32:43.110Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 371, "fields": { - "created": "2018-07-20T15:27:01.126Z", - "updated": "2021-02-21T12:32:43.116Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.126Z", + "updated": "2021-02-21T12:32:43.116Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 372, "fields": { - "created": "2018-07-20T15:27:01.265Z", - "updated": "2021-02-21T12:32:43.122Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-10-07T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.265Z", + "updated": "2021-02-21T12:32:43.122Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-10-07T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 373, "fields": { - "created": "2018-07-20T15:27:01.277Z", - "updated": "2021-02-21T12:32:43.129Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "2018-11-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.277Z", + "updated": "2021-02-21T12:32:43.129Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "2018-11-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 374, "fields": { - "created": "2018-07-20T15:27:00.995Z", - "updated": "2021-02-21T12:32:43.134Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:00.995Z", + "updated": "2021-02-21T12:32:43.134Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 375, "fields": { - "created": "2018-07-20T15:27:01.061Z", - "updated": "2021-02-21T12:32:43.140Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.061Z", + "updated": "2021-02-21T12:32:43.140Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 376, "fields": { - "created": "2018-07-20T15:27:01.072Z", - "updated": "2021-02-21T12:32:43.146Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.072Z", + "updated": "2021-02-21T12:32:43.146Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 377, "fields": { - "created": "2018-07-20T15:27:01.213Z", - "updated": "2021-02-21T12:32:43.152Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.213Z", + "updated": "2021-02-21T12:32:43.152Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 378, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2021-02-21T12:32:43.159Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.233Z", + "updated": "2021-02-21T12:32:43.159Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 379, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2021-02-21T12:32:43.165Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.233Z", + "updated": "2021-02-21T12:32:43.165Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 380, "fields": { - "created": "2018-07-20T15:27:01.080Z", - "updated": "2021-02-21T12:32:43.172Z", - "project": 1, - "snapshot": 7, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "16", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.080Z", + "updated": "2021-02-21T12:32:43.172Z", + "project": 1, + "snapshot": 7, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "16", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 381, "fields": { - "created": "2018-07-20T15:27:01.093Z", - "updated": "2021-02-21T12:32:43.177Z", - "project": 1, - "snapshot": 7, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "31", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.093Z", + "updated": "2021-02-21T12:32:43.177Z", + "project": 1, + "snapshot": 7, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "31", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 382, "fields": { - "created": "2018-07-20T15:27:01.256Z", - "updated": "2021-02-21T12:32:43.183Z", - "project": 1, - "snapshot": 7, - "attribute": 67, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "86", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.256Z", + "updated": "2021-02-21T12:32:43.183Z", + "project": 1, + "snapshot": 7, + "attribute": 67, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "86", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 383, "fields": { - "created": "2018-07-20T15:27:01.090Z", - "updated": "2021-02-21T12:32:43.190Z", - "project": 1, - "snapshot": 7, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.090Z", + "updated": "2021-02-21T12:32:43.190Z", + "project": 1, + "snapshot": 7, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 384, "fields": { - "created": "2018-07-20T15:27:01.087Z", - "updated": "2021-02-21T12:32:43.195Z", - "project": 1, - "snapshot": 7, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.087Z", + "updated": "2021-02-21T12:32:43.195Z", + "project": 1, + "snapshot": 7, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 385, "fields": { - "created": "2018-07-20T15:27:01.247Z", - "updated": "2021-02-21T12:32:43.200Z", - "project": 1, - "snapshot": 7, - "attribute": 68, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:27:01.247Z", + "updated": "2021-02-21T12:32:43.200Z", + "project": 1, + "snapshot": 7, + "attribute": 68, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 386, "fields": { - "created": "2017-04-25T14:55:25.443Z", - "updated": "2021-02-21T12:32:43.207Z", - "project": 1, - "snapshot": 7, - "attribute": 47, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:25.443Z", + "updated": "2021-02-21T12:32:43.207Z", + "project": 1, + "snapshot": 7, + "attribute": 47, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 387, "fields": { - "created": "2017-04-25T14:55:30.124Z", - "updated": "2021-02-21T12:32:43.214Z", - "project": 1, - "snapshot": 7, - "attribute": 47, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:30.124Z", + "updated": "2021-02-21T12:32:43.214Z", + "project": 1, + "snapshot": 7, + "attribute": 47, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 388, "fields": { - "created": "2017-04-25T14:55:25.449Z", - "updated": "2021-02-21T12:32:43.220Z", - "project": 1, - "snapshot": 7, - "attribute": 48, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:25.449Z", + "updated": "2021-02-21T12:32:43.220Z", + "project": 1, + "snapshot": 7, + "attribute": 48, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 389, "fields": { - "created": "2017-04-25T14:55:30.120Z", - "updated": "2021-02-21T12:32:43.226Z", - "project": 1, - "snapshot": 7, - "attribute": 48, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:30.120Z", + "updated": "2021-02-21T12:32:43.226Z", + "project": 1, + "snapshot": 7, + "attribute": 48, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 390, "fields": { - "created": "2018-07-23T11:10:30.841Z", - "updated": "2021-02-21T12:32:43.233Z", - "project": 1, - "snapshot": 7, - "attribute": 79, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "First", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:10:30.841Z", + "updated": "2021-02-21T12:32:43.233Z", + "project": 1, + "snapshot": 7, + "attribute": 79, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "First", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 391, "fields": { - "created": "2018-07-23T11:10:33.797Z", - "updated": "2021-02-21T12:32:43.239Z", - "project": 1, - "snapshot": 7, - "attribute": 79, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Second", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-23T11:10:33.797Z", + "updated": "2021-02-21T12:32:43.239Z", + "project": 1, + "snapshot": 7, + "attribute": 79, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Second", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 392, "fields": { - "created": "2018-07-20T15:09:23.797Z", - "updated": "2021-02-21T12:32:43.246Z", - "project": 1, - "snapshot": 7, - "attribute": 70, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.797Z", + "updated": "2021-02-21T12:32:43.246Z", + "project": 1, + "snapshot": 7, + "attribute": 70, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 393, "fields": { - "created": "2018-07-20T15:08:38.982Z", - "updated": "2021-02-21T12:32:43.252Z", - "project": 1, - "snapshot": 7, - "attribute": 70, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.982Z", + "updated": "2021-02-21T12:32:43.252Z", + "project": 1, + "snapshot": 7, + "attribute": 70, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 394, "fields": { - "created": "2018-07-20T15:09:23.833Z", - "updated": "2021-02-21T12:32:43.258Z", - "project": 1, - "snapshot": 7, - "attribute": 71, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.833Z", + "updated": "2021-02-21T12:32:43.258Z", + "project": 1, + "snapshot": 7, + "attribute": 71, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 395, "fields": { - "created": "2018-07-20T15:08:39.010Z", - "updated": "2021-02-21T12:32:43.265Z", - "project": 1, - "snapshot": 7, - "attribute": 71, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:39.010Z", + "updated": "2021-02-21T12:32:43.265Z", + "project": 1, + "snapshot": 7, + "attribute": 71, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 396, "fields": { - "created": "2018-07-20T15:09:23.804Z", - "updated": "2021-02-21T12:32:43.270Z", - "project": 1, - "snapshot": 7, - "attribute": 74, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.804Z", + "updated": "2021-02-21T12:32:43.270Z", + "project": 1, + "snapshot": 7, + "attribute": 74, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 397, "fields": { - "created": "2018-07-20T15:08:38.976Z", - "updated": "2021-02-21T12:32:43.276Z", - "project": 1, - "snapshot": 7, - "attribute": 74, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.976Z", + "updated": "2021-02-21T12:32:43.276Z", + "project": 1, + "snapshot": 7, + "attribute": 74, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 398, "fields": { - "created": "2018-07-20T15:09:23.807Z", - "updated": "2021-02-21T12:32:43.283Z", - "project": 1, - "snapshot": 7, - "attribute": 75, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.807Z", + "updated": "2021-02-21T12:32:43.283Z", + "project": 1, + "snapshot": 7, + "attribute": 75, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 399, "fields": { - "created": "2018-07-20T15:08:38.997Z", - "updated": "2021-02-21T12:32:43.289Z", - "project": 1, - "snapshot": 7, - "attribute": 75, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.997Z", + "updated": "2021-02-21T12:32:43.289Z", + "project": 1, + "snapshot": 7, + "attribute": 75, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 400, "fields": { - "created": "2018-07-20T15:09:23.813Z", - "updated": "2021-02-21T12:32:43.295Z", - "project": 1, - "snapshot": 7, - "attribute": 76, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:09:23.813Z", + "updated": "2021-02-21T12:32:43.295Z", + "project": 1, + "snapshot": 7, + "attribute": 76, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 401, "fields": { - "created": "2018-07-20T15:08:38.992Z", - "updated": "2021-02-21T12:32:43.301Z", - "project": 1, - "snapshot": 7, - "attribute": 76, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.992Z", + "updated": "2021-02-21T12:32:43.301Z", + "project": 1, + "snapshot": 7, + "attribute": 76, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 402, "fields": { - "created": "2017-04-25T14:55:19.847Z", - "updated": "2021-02-21T12:32:43.306Z", - "project": 1, - "snapshot": 7, - "attribute": 49, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:19.847Z", + "updated": "2021-02-21T12:32:43.306Z", + "project": 1, + "snapshot": 7, + "attribute": 49, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 403, "fields": { - "created": "2018-07-20T15:08:38.974Z", - "updated": "2021-02-21T12:32:43.312Z", - "project": 1, - "snapshot": 7, - "attribute": 49, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.974Z", + "updated": "2021-02-21T12:32:43.312Z", + "project": 1, + "snapshot": 7, + "attribute": 49, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 404, "fields": { - "created": "2017-04-25T14:55:19.853Z", - "updated": "2021-02-21T12:32:43.319Z", - "project": 1, - "snapshot": 7, - "attribute": 50, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2017-04-25T14:55:19.853Z", + "updated": "2021-02-21T12:32:43.319Z", + "project": 1, + "snapshot": 7, + "attribute": 50, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 405, "fields": { - "created": "2018-07-20T15:08:38.975Z", - "updated": "2021-02-21T12:32:43.325Z", - "project": 1, - "snapshot": 7, - "attribute": 50, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2018-07-20T15:08:38.975Z", + "updated": "2021-02-21T12:32:43.325Z", + "project": 1, + "snapshot": 7, + "attribute": 50, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 436, "fields": { - "created": "2021-06-02T15:15:09.397Z", - "updated": "2021-06-02T15:45:14.646Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "0", - "set_index": 1, - "collection_index": 0, - "text": "b1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:09.397Z", + "updated": "2021-06-02T15:45:14.646Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "0", + "set_index": 1, + "collection_index": 0, + "text": "b1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 437, "fields": { - "created": "2021-06-02T15:15:09.418Z", - "updated": "2021-06-02T15:45:13.655Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "0", - "set_index": 0, - "collection_index": 0, - "text": "a0", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:09.418Z", + "updated": "2021-06-02T15:45:13.655Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "0", + "set_index": 0, + "collection_index": 0, + "text": "a0", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 438, "fields": { - "created": "2021-06-02T15:15:09.444Z", - "updated": "2021-06-02T15:45:15.729Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 0, - "collection_index": 0, - "text": "c01", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:09.444Z", + "updated": "2021-06-02T15:45:15.729Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 0, + "collection_index": 0, + "text": "c01", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 439, "fields": { - "created": "2021-06-02T15:15:09.448Z", - "updated": "2021-06-02T15:45:13.741Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "0", - "set_index": 1, - "collection_index": 0, - "text": "a1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:09.448Z", + "updated": "2021-06-02T15:45:13.741Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "0", + "set_index": 1, + "collection_index": 0, + "text": "a1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 440, "fields": { - "created": "2021-06-02T15:15:09.467Z", - "updated": "2021-06-02T15:45:16.312Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 0, - "collection_index": 1, - "text": "c02", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:09.467Z", + "updated": "2021-06-02T15:45:16.312Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 0, + "collection_index": 1, + "text": "c02", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 441, "fields": { - "created": "2021-06-02T15:15:09.545Z", - "updated": "2021-06-02T15:45:14.681Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "0", - "set_index": 0, - "collection_index": 0, - "text": "b1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:09.545Z", + "updated": "2021-06-02T15:45:14.681Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "0", + "set_index": 0, + "collection_index": 0, + "text": "b1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 442, "fields": { - "created": "2021-06-02T15:15:10.099Z", - "updated": "2021-06-02T15:45:15.919Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 1, - "collection_index": 1, - "text": "c11", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:10.099Z", + "updated": "2021-06-02T15:45:15.919Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 1, + "collection_index": 1, + "text": "c11", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 443, "fields": { - "created": "2021-06-02T15:15:10.107Z", - "updated": "2021-06-02T15:45:15.784Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 1, - "collection_index": 0, - "text": "c10", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:10.107Z", + "updated": "2021-06-02T15:45:15.784Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 1, + "collection_index": 0, + "text": "c10", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 444, "fields": { - "created": "2021-06-02T15:15:35.543Z", - "updated": "2021-06-02T15:45:13.636Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "1", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:35.543Z", + "updated": "2021-06-02T15:45:13.636Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "1", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 445, "fields": { - "created": "2021-06-02T15:15:35.554Z", - "updated": "2021-06-02T15:45:14.545Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "1", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:35.554Z", + "updated": "2021-06-02T15:45:14.545Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "1", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 446, "fields": { - "created": "2021-06-02T15:15:35.598Z", - "updated": "2021-06-02T15:45:13.968Z", - "project": 1, - "snapshot": null, - "attribute": 112, - "set_prefix": "1|2", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:35.598Z", + "updated": "2021-06-02T15:45:13.968Z", + "project": 1, + "snapshot": null, + "attribute": 112, + "set_prefix": "1|2", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 447, "fields": { - "created": "2021-06-02T15:15:35.637Z", - "updated": "2021-06-02T15:45:14.698Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "1", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:35.637Z", + "updated": "2021-06-02T15:45:14.698Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "1", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 448, "fields": { - "created": "2021-06-02T15:15:36.397Z", - "updated": "2021-06-02T15:45:14.784Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "1", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:36.397Z", + "updated": "2021-06-02T15:45:14.784Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "1", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 449, "fields": { - "created": "2021-06-02T15:15:36.572Z", - "updated": "2021-06-02T15:45:14.892Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "1", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:36.572Z", + "updated": "2021-06-02T15:45:14.892Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "1", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 450, "fields": { - "created": "2021-06-02T15:15:36.660Z", - "updated": "2021-06-02T15:45:15.033Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "1", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:36.660Z", + "updated": "2021-06-02T15:45:15.033Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "1", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 451, "fields": { - "created": "2021-06-02T15:15:37.357Z", - "updated": "2021-06-02T15:45:16.041Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "1", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:37.357Z", + "updated": "2021-06-02T15:45:16.041Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "1", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 452, "fields": { - "created": "2021-06-02T15:15:37.385Z", - "updated": "2021-06-02T15:45:16.034Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "1", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:37.385Z", + "updated": "2021-06-02T15:45:16.034Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "1", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 453, "fields": { - "created": "2021-06-02T15:15:38.070Z", - "updated": "2021-06-02T15:45:16.570Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "1", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:15:38.070Z", + "updated": "2021-06-02T15:45:16.570Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "1", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 454, "fields": { - "created": "2021-06-02T15:45:08.272Z", - "updated": "2021-06-02T15:45:13.789Z", - "project": 1, - "snapshot": null, - "attribute": 112, - "set_prefix": "1|2", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - }, - { + "created": "2021-06-02T15:45:08.272Z", + "updated": "2021-06-02T15:45:13.789Z", + "project": 1, + "snapshot": null, + "attribute": 112, + "set_prefix": "1|2", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +}, +{ "model": "projects.value", "pk": 455, "fields": { - "created": "2021-06-02T15:45:08.378Z", - "updated": "2021-06-02T15:45:13.729Z", - "project": 1, - "snapshot": null, - "attribute": 112, - "set_prefix": "1|2", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } - } -] \ No newline at end of file + "created": "2021-06-02T15:45:08.378Z", + "updated": "2021-06-02T15:45:13.729Z", + "project": 1, + "snapshot": null, + "attribute": 112, + "set_prefix": "1|2", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } +} +] diff --git a/testing/fixtures/views.json b/testing/fixtures/views.json index e3d89f2f86..735d50c0a6 100644 --- a/testing/fixtures/views.json +++ b/testing/fixtures/views.json @@ -1,62 +1,90 @@ [ - { +{ "model": "views.view", "pk": 1, "fields": { - "uri": "http://example.com/terms/views/view_a", - "uri_prefix": "http://example.com/terms", - "key": "view_a", - "comment": "", - "locked": false, - "template": "{% load view_tags %}\n\n

Individual

\n\n

Collection

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

Individual

\n\n

Single

\n\n

\n {% render_value 'individual/single/bool' %}\n

\n

\n {% render_value 'individual/single/checkbox' %}\n

\n

\n {% render_value 'individual/single/datetime' %}\n

\n

\n {% render_value 'individual/single/float' %}\n

\n

\n {% render_value 'individual/single/integer' %}\n

\n

\n {% render_value 'individual/single/radio' %}\n

\n

\n {% render_value 'individual/single/range' %}\n

\n

\n {% render_value 'individual/single/select' %}\n

\n

\n {% render_value 'individual/single/text' %}\n

\n

\n {% render_value 'individual/single/textarea' %}\n

\n

\n {% render_value 'individual/single/url' %}\n

\n

\n {% render_value 'individual/single/file' %}\n

\n\n

Set

\n\n{% get_values 'set/id' index=0 as sets %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{{ set.value }}

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{% endfor %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{% render_value 'set/id' set_index=set.set_index %}

\n\n

\n {% render_value 'set/single/bool' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/checkbox' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/datetime' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/float' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/integer' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/radio' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/range' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/select' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/text' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/textarea' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/url' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/file' set_index=set.set_index %}\n

\n\n{% endfor %}", - "title_lang1": "View A", - "title_lang2": "Ansicht A", - "title_lang3": "", - "title_lang4": "", - "title_lang5": "", - "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang3": "", - "help_lang4": "", - "help_lang5": "", - "available": true, - "catalogs": [ - 1 - ], - "sites": [ - 1 - ], - "groups": [] + "uri": "http://example.com/terms/views/view_a", + "uri_prefix": "http://example.com/terms", + "key": "view_a", + "comment": "", + "locked": false, + "template": "{% load view_tags %}\n\n

Individual

\n\n

Collection

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

Individual

\n\n

Single

\n\n

\n {% render_value 'individual/single/bool' %}\n

\n

\n {% render_value 'individual/single/checkbox' %}\n

\n

\n {% render_value 'individual/single/datetime' %}\n

\n

\n {% render_value 'individual/single/float' %}\n

\n

\n {% render_value 'individual/single/integer' %}\n

\n

\n {% render_value 'individual/single/radio' %}\n

\n

\n {% render_value 'individual/single/range' %}\n

\n

\n {% render_value 'individual/single/select' %}\n

\n

\n {% render_value 'individual/single/text' %}\n

\n

\n {% render_value 'individual/single/textarea' %}\n

\n

\n {% render_value 'individual/single/url' %}\n

\n

\n {% render_value 'individual/single/file' %}\n

\n\n

Set

\n\n{% get_values 'set/id' index=0 as sets %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{{ set.value }}

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{% endfor %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{% render_value 'set/id' set_index=set.set_index %}

\n\n

\n {% render_value 'set/single/bool' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/checkbox' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/datetime' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/float' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/integer' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/radio' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/range' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/select' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/text' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/textarea' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/url' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/file' set_index=set.set_index %}\n

\n\n{% endfor %}", + "title_lang1": "View A", + "title_lang2": "Ansicht A", + "title_lang3": "", + "title_lang4": "", + "title_lang5": "", + "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang3": "", + "help_lang4": "", + "help_lang5": "", + "available": true, + "catalogs": [ + 1 + ], + "sites": [ + 1 + ], + "groups": [] } - }, - { +}, +{ "model": "views.view", "pk": 2, "fields": { - "uri": "http://example.com/terms/views/view_b", - "uri_prefix": "http://example.com/terms", - "key": "view_b", - "comment": "", - "locked": false, - "template": "{% load view_tags %}\n\n

Empty

", - "title_lang1": "View B", - "title_lang2": "Ansicht B", - "title_lang3": "", - "title_lang4": "", - "title_lang5": "", - "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang3": "", - "help_lang4": "", - "help_lang5": "", - "available": true, - "catalogs": [ - 1 - ], - "sites": [ - 1 - ], - "groups": [] + "uri": "http://example.com/terms/views/view_b", + "uri_prefix": "http://example.com/terms", + "key": "view_b", + "comment": "", + "locked": false, + "template": "{% load view_tags %}\n\n

Empty

", + "title_lang1": "View B", + "title_lang2": "Ansicht B", + "title_lang3": "", + "title_lang4": "", + "title_lang5": "", + "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang3": "", + "help_lang4": "", + "help_lang5": "", + "available": true, + "catalogs": [ + 1 + ], + "sites": [ + 1 + ], + "groups": [] } - } -] \ No newline at end of file +}, +{ + "model": "views.view", + "pk": 3, + "fields": { + "uri": "http://example.com/terms/views/view_c", + "uri_prefix": "http://example.com/terms", + "key": "view_c", + "comment": "", + "locked": false, + "template": "{% load view_tags %}\n\n

Empty

", + "title_lang1": "Project Test View C", + "title_lang2": "Projekt Test Ansicht C", + "title_lang3": "", + "title_lang4": "", + "title_lang5": "", + "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang3": "", + "help_lang4": "", + "help_lang5": "", + "available": true, + "catalogs": [], + "sites": [ + 1 + ], + "groups": [] + } +} +] From b5d411eb0a2569182b938f063d329cac0636218a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Fri, 18 Mar 2022 13:23:47 +0100 Subject: [PATCH 02/12] Fix project tests with additional test data --- rdmo/projects/tests/test_view_project.py | 18 +++++++++--------- rdmo/projects/tests/test_viewset_issue.py | 8 ++++---- rdmo/projects/tests/test_viewset_membership.py | 8 ++++---- rdmo/projects/tests/test_viewset_project.py | 18 +++++++++--------- 4 files changed, 26 insertions(+), 26 deletions(-) diff --git a/rdmo/projects/tests/test_view_project.py b/rdmo/projects/tests/test_view_project.py index 4ed39189f6..4ae7cde300 100644 --- a/rdmo/projects/tests/test_view_project.py +++ b/rdmo/projects/tests/test_view_project.py @@ -18,35 +18,35 @@ ) view_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5, 7], 'author': [1, 3, 5, 8], 'guest': [1, 3, 5, 9], 'api': [1, 2, 3, 4, 5], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } change_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5, 7], 'api': [1, 2, 3, 4, 5], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } delete_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'api': [1, 2, 3, 4, 5], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } export_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5, 7], 'api': [1, 2, 3, 4, 5], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } -projects = [1, 2, 3, 4, 5, 6, 7, 8, 9] +projects = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] export_formats = ('rtf', 'odt', 'docx', 'html', 'markdown', 'tex', 'pdf') diff --git a/rdmo/projects/tests/test_viewset_issue.py b/rdmo/projects/tests/test_viewset_issue.py index dec720b27d..6966c46cac 100644 --- a/rdmo/projects/tests/test_viewset_issue.py +++ b/rdmo/projects/tests/test_viewset_issue.py @@ -15,12 +15,12 @@ ) view_issue_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5], 'author': [1, 3, 5], 'guest': [1, 3, 5], - 'api': [1, 2, 3, 4, 5], - 'site': [1, 2, 3, 4, 5] + 'api': [1, 2, 3, 4, 5, 10], + 'site': [1, 2, 3, 4, 5, 10] } urlnames = { @@ -28,7 +28,7 @@ 'detail': 'v1-projects:issue-detail' } -projects = [1, 2, 3, 4, 5] +projects = [1, 2, 3, 4, 5, 10] issues = [1, 2, 3, 4] site_id = 1 diff --git a/rdmo/projects/tests/test_viewset_membership.py b/rdmo/projects/tests/test_viewset_membership.py index 3bde01359b..47519ca9f7 100644 --- a/rdmo/projects/tests/test_viewset_membership.py +++ b/rdmo/projects/tests/test_viewset_membership.py @@ -15,12 +15,12 @@ ) view_membership_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5, 7], 'author': [1, 3, 5, 8], 'guest': [1, 3, 5, 9], - 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } urlnames = { @@ -28,7 +28,7 @@ 'detail': 'v1-projects:membership-detail' } -projects = [1, 2, 3, 4, 5, 6, 7, 8, 9] +projects = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] memberships = [1, 2, 3, 4] membership_roles = ('owner', 'manager', 'author', 'guest') diff --git a/rdmo/projects/tests/test_viewset_project.py b/rdmo/projects/tests/test_viewset_project.py index ffe7c3a2d1..104b157fcb 100644 --- a/rdmo/projects/tests/test_viewset_project.py +++ b/rdmo/projects/tests/test_viewset_project.py @@ -15,25 +15,25 @@ ) view_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5, 7], 'author': [1, 3, 5, 8], 'guest': [1, 3, 5, 9], - 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } change_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], + 'owner': [1, 2, 3, 4, 5, 10], 'manager': [1, 3, 5, 7], - 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } delete_project_permission_map = { - 'owner': [1, 2, 3, 4, 5], - 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9], - 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9] + 'owner': [1, 2, 3, 4, 5, 10], + 'api': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + 'site': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } urlnames = { From 545effb10f0501977bd86044d47283726d21f4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Wed, 23 Mar 2022 16:29:32 +0100 Subject: [PATCH 03/12] Refactored implementation to use django signals --- rdmo/views/apps.py | 7 +++++++ rdmo/views/serializers/v1.py | 12 ------------ rdmo/views/signals.py | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 12 deletions(-) create mode 100644 rdmo/views/signals.py diff --git a/rdmo/views/apps.py b/rdmo/views/apps.py index 9d832d2b3b..f5b1f4ba9d 100644 --- a/rdmo/views/apps.py +++ b/rdmo/views/apps.py @@ -1,7 +1,14 @@ from django.apps import AppConfig +from django.db.models.signals import m2m_changed from django.utils.translation import gettext_lazy as _ class ViewsConfig(AppConfig): name = 'rdmo.views' verbose_name = _('Views') + + def ready(self): + from . import signals + from .models import View + m2m_changed.connect(signals.m2m_changed_view_catalog_signal, sender=View.catalogs.through) + m2m_changed.connect(signals.m2m_changed_view_sites_signal, sender=View.sites.through) \ No newline at end of file diff --git a/rdmo/views/serializers/v1.py b/rdmo/views/serializers/v1.py index f23fa7e26e..7445f7600b 100644 --- a/rdmo/views/serializers/v1.py +++ b/rdmo/views/serializers/v1.py @@ -28,18 +28,6 @@ def validate(self, data): return super(ViewSerializer, self).validate(data) - def update(self, instance, validated_data): - instance = super(ViewSerializer, self).update(instance, validated_data) - - # hook to remove views from existing projects that use catalogs for which the view - # is not/no longer configured - if instance.catalogs.all().count() > 0: - catalogs = Catalog.objects.exclude(id__in=instance.catalogs.all().values_list('pk')) - for proj in Project.objects.filter(catalog__in=catalogs, views=instance): - proj.views.remove(instance) - - return instance - class Meta: model = View fields = ( diff --git a/rdmo/views/signals.py b/rdmo/views/signals.py new file mode 100644 index 0000000000..e99e9bb348 --- /dev/null +++ b/rdmo/views/signals.py @@ -0,0 +1,33 @@ +import logging + +from django.contrib.sites.models import Site + +from rdmo.questions.models import Catalog +from rdmo.projects.models.project import Project + +from .models import View + +logger = logging.getLogger(__name__) + +def m2m_changed_view_catalog_signal(sender, instance, action, reverse, pk_set, **kwargs): + catalogs = instance.catalogs.all() + + if catalogs.count() > 0: + catalog_candidates = Catalog.objects.exclude(id__in=catalogs.values_list('pk')) + + # Remove catalog candidates for all sites + projects = Project.objects.filter(catalog__in=catalog_candidates, views=instance) + for proj in projects: + proj.views.remove(instance) + +def m2m_changed_view_sites_signal(sender, instance, action, reverse, pk_set, **kwargs): + sites = instance.sites.all() + catalogs = instance.catalogs.all() + + if sites.count() > 0: + site_candidates = Site.objects.exclude(id__in=sites.values_list('pk')) + + # Restrict chosen catalogs for chosen sites + projects = Project.objects.filter(site__in=site_candidates, catalog__in=catalogs, views=instance) + for proj in projects: + proj.views.remove(instance) From 8934670241cc2283cba05f50e104e549ea39f1c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Wed, 23 Mar 2022 16:30:26 +0100 Subject: [PATCH 04/12] Removed unused imports --- rdmo/views/serializers/v1.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/rdmo/views/serializers/v1.py b/rdmo/views/serializers/v1.py index 7445f7600b..fe63c4093f 100644 --- a/rdmo/views/serializers/v1.py +++ b/rdmo/views/serializers/v1.py @@ -5,8 +5,6 @@ from rdmo.core.serializers import (MarkdownSerializerMixin, SiteSerializer, TranslationSerializerMixin) from rdmo.core.utils import get_language_warning -from rdmo.projects.models.project import Project -from rdmo.questions.models.catalog import Catalog from ..models import View from ..validators import ViewLockedValidator, ViewUniqueURIValidator From 5424b901db134753ad72e8f3dbdba4120989d7fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Wed, 23 Mar 2022 17:09:41 +0100 Subject: [PATCH 05/12] Added signal for group filtering --- rdmo/views/apps.py | 3 ++- rdmo/views/signals.py | 23 +++++++++++++++++++---- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/rdmo/views/apps.py b/rdmo/views/apps.py index f5b1f4ba9d..24068095b4 100644 --- a/rdmo/views/apps.py +++ b/rdmo/views/apps.py @@ -11,4 +11,5 @@ def ready(self): from . import signals from .models import View m2m_changed.connect(signals.m2m_changed_view_catalog_signal, sender=View.catalogs.through) - m2m_changed.connect(signals.m2m_changed_view_sites_signal, sender=View.sites.through) \ No newline at end of file + m2m_changed.connect(signals.m2m_changed_view_sites_signal, sender=View.sites.through) + m2m_changed.connect(signals.m2m_changed_view_groups_signal, sender=View.groups.through) diff --git a/rdmo/views/signals.py b/rdmo/views/signals.py index e99e9bb348..25b1a2b972 100644 --- a/rdmo/views/signals.py +++ b/rdmo/views/signals.py @@ -1,15 +1,16 @@ import logging +from django.contrib.auth.models import User, Group from django.contrib.sites.models import Site from rdmo.questions.models import Catalog -from rdmo.projects.models.project import Project +from rdmo.projects.models import Project, Membership from .models import View logger = logging.getLogger(__name__) -def m2m_changed_view_catalog_signal(sender, instance, action, reverse, pk_set, **kwargs): +def m2m_changed_view_catalog_signal(sender, instance, **kwargs): catalogs = instance.catalogs.all() if catalogs.count() > 0: @@ -20,14 +21,28 @@ def m2m_changed_view_catalog_signal(sender, instance, action, reverse, pk_set, * for proj in projects: proj.views.remove(instance) -def m2m_changed_view_sites_signal(sender, instance, action, reverse, pk_set, **kwargs): +def m2m_changed_view_sites_signal(sender, instance, **kwargs): sites = instance.sites.all() catalogs = instance.catalogs.all() if sites.count() > 0: site_candidates = Site.objects.exclude(id__in=sites.values_list('pk')) - + # Restrict chosen catalogs for chosen sites projects = Project.objects.filter(site__in=site_candidates, catalog__in=catalogs, views=instance) for proj in projects: proj.views.remove(instance) + +def m2m_changed_view_groups_signal(sender, instance, **kwargs): + groups = instance.groups.all() + catalogs = instance.catalogs.all() + + if groups.count() > 0: + group_candidates = Group.objects.exclude(id__in=groups.values_list('pk')) + users = User.objects.filter(groups__in=group_candidates) + memberships = Membership.objects.filter(role='owner', user__in=users).values_list('pk') + + # Restrict chosen catalogs for chosen groups + projects = Project.objects.filter(memberships__in=list(memberships), catalog__in=catalogs, views=instance) + for proj in projects: + proj.views.remove(instance) From 37a8631b60b83e2e97769769dcc1c86f733ba016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Wed, 23 Mar 2022 17:35:15 +0100 Subject: [PATCH 06/12] Added feature flag for removal --- rdmo/views/apps.py | 9 ++++++--- testing/config/settings/base.py | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/rdmo/views/apps.py b/rdmo/views/apps.py index 24068095b4..1753f147ac 100644 --- a/rdmo/views/apps.py +++ b/rdmo/views/apps.py @@ -1,4 +1,5 @@ from django.apps import AppConfig +from django.conf import settings from django.db.models.signals import m2m_changed from django.utils.translation import gettext_lazy as _ @@ -10,6 +11,8 @@ class ViewsConfig(AppConfig): def ready(self): from . import signals from .models import View - m2m_changed.connect(signals.m2m_changed_view_catalog_signal, sender=View.catalogs.through) - m2m_changed.connect(signals.m2m_changed_view_sites_signal, sender=View.sites.through) - m2m_changed.connect(signals.m2m_changed_view_groups_signal, sender=View.groups.through) + + if settings.PROJECT_REMOVE_VIEWS: + m2m_changed.connect(signals.m2m_changed_view_catalog_signal, sender=View.catalogs.through) + m2m_changed.connect(signals.m2m_changed_view_sites_signal, sender=View.sites.through) + m2m_changed.connect(signals.m2m_changed_view_groups_signal, sender=View.groups.through) diff --git a/testing/config/settings/base.py b/testing/config/settings/base.py index b2519d7a72..52b6c65657 100644 --- a/testing/config/settings/base.py +++ b/testing/config/settings/base.py @@ -31,6 +31,8 @@ PROJECT_SEND_INVITE = True +PROJECT_REMOVE_VIEWS = True + EMAIL_RECIPIENTS_CHOICES = [ ('email@example.com', 'Emmi Email '), ] From 2d07cd4fb881548480e2d211aebfb708c1b864da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Wed, 23 Mar 2022 18:13:24 +0100 Subject: [PATCH 07/12] Added configuration flag to default settings --- rdmo/core/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rdmo/core/settings.py b/rdmo/core/settings.py index 6d936522cd..1dd464bce9 100644 --- a/rdmo/core/settings.py +++ b/rdmo/core/settings.py @@ -279,6 +279,8 @@ PROJECT_SEND_INVITE = True +PROJECT_REMOVE_VIEWS = True + NESTED_PROJECTS = True OPTIONSET_PROVIDERS = [] From 554579f2be02e678199208a6896e82eb5b113e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Thu, 24 Mar 2022 15:33:33 +0100 Subject: [PATCH 08/12] FIxed bug, extended tests --- rdmo/views/signals.py | 9 +++- rdmo/views/tests/test_viewset_view.py | 77 ++++++++++++++++++--------- testing/fixtures/groups.json | 8 +++ testing/fixtures/users.json | 4 +- 4 files changed, 70 insertions(+), 28 deletions(-) diff --git a/rdmo/views/signals.py b/rdmo/views/signals.py index 25b1a2b972..dc2ce3cf9e 100644 --- a/rdmo/views/signals.py +++ b/rdmo/views/signals.py @@ -27,6 +27,9 @@ def m2m_changed_view_sites_signal(sender, instance, **kwargs): if sites.count() > 0: site_candidates = Site.objects.exclude(id__in=sites.values_list('pk')) + if catalogs.count() < 1: + # if no catalogs are selected, update all + catalogs = Catalog.objects.all() # Restrict chosen catalogs for chosen sites projects = Project.objects.filter(site__in=site_candidates, catalog__in=catalogs, views=instance) @@ -38,9 +41,11 @@ def m2m_changed_view_groups_signal(sender, instance, **kwargs): catalogs = instance.catalogs.all() if groups.count() > 0: - group_candidates = Group.objects.exclude(id__in=groups.values_list('pk')) - users = User.objects.filter(groups__in=group_candidates) + users = User.objects.exclude(groups__in=groups) memberships = Membership.objects.filter(role='owner', user__in=users).values_list('pk') + if catalogs.count() < 1: + # if no catalogs are selected, update all + catalogs = Catalog.objects.all() # Restrict chosen catalogs for chosen groups projects = Project.objects.filter(memberships__in=list(memberships), catalog__in=catalogs, views=instance) diff --git a/rdmo/views/tests/test_viewset_view.py b/rdmo/views/tests/test_viewset_view.py index f2feea9a5f..5bd0830647 100644 --- a/rdmo/views/tests/test_viewset_view.py +++ b/rdmo/views/tests/test_viewset_view.py @@ -1,9 +1,13 @@ import xml.etree.ElementTree as et +import itertools import pytest +from django.contrib.auth.models import Group +from django.contrib.sites.models import Site from django.urls import reverse from rdmo.projects.models import Project +from rdmo.questions.models import Catalog from ..models import View @@ -48,10 +52,38 @@ 'copy': 'v1-views:view-copy' } -view_project_test = { - ('3', '2', '10') -} - +view_update_tests = [ + # tuples of: view_id, sites, catalogs, groups, project_id, project_exists + ('3', [], [], [], '10', True), + ('3', [2], [], [], '10', False), + ('3', [1,2,3], [], [], '10', True), + ('3', [], [2], [], '10', False), + ('3', [2], [2], [], '10', False), + ('3', [1,2,3], [2], [], '10', False), + ('3', [], [1,2], [], '10', True), + ('3', [2], [1,2], [], '10', False), + ('3', [1,2,3], [1,2], [], '10', True), + + ('3', [], [], [1], '10', False), + ('3', [2], [], [1], '10', False), + ('3', [1,2,3], [], [1], '10', False), + ('3', [], [2], [1], '10', False), + ('3', [2], [2], [1], '10', False), + ('3', [1,2,3], [2], [1], '10', False), + ('3', [], [1,2], [1], '10', False), + ('3', [2], [1,2], [1], '10', False), + ('3', [1,2,3], [1,2], [1], '10', False), + + ('3', [], [], [1,2,3,4], '10', True), + ('3', [2], [], [1,2,3,4], '10', False), + ('3', [1,2,3], [], [1,2,3,4], '10', True), + ('3', [], [2], [1,2,3,4], '10', False), + ('3', [2], [2], [1,2,3,4], '10', False), + ('3', [1,2,3], [2], [1,2,3,4], '10', False), + ('3', [], [1,2], [1,2,3,4], '10', True), + ('3', [2], [1,2], [1,2,3,4], '10', False), + ('3', [1,2,3], [1,2], [1,2,3,4], '10', True) +] @pytest.mark.parametrize('username,password', users) def test_list(db, client, username, password): @@ -138,29 +170,24 @@ def test_update(db, client, username, password): response = client.put(url, data, content_type='application/json') assert response.status_code == status_map['update'][username], response.json() -@pytest.mark.parametrize('username,password', view_project_test_users) -@pytest.mark.parametrize('view_id,catalog_id,project_id', view_project_test) -def test_update_projects(db, client, username, password, view_id, catalog_id, project_id): - client.login(username=username, password=password) +@pytest.mark.parametrize('view_id,sites,catalogs,groups,project_id,project_exists', view_update_tests) +def test_update_projects(db, view_id, sites, catalogs, groups, project_id, project_exists): view = View.objects.get(pk=view_id) + project = Project.objects.get(pk=project_id) - url = reverse(urlnames['detail'], args=[view.pk]) - data = { - 'uri_prefix': view.uri_prefix, - 'key': view.key, - 'comment': view.comment, - 'template': view.template, - 'title_en': view.title_lang1, - 'title_de': view.title_lang2, - 'help_en': view.help_lang1, - 'help_de': view.help_lang2, - 'catalogs': [catalog_id] - } - response = client.put(url, data, content_type='application/json') - assert response.status_code == status_map['update'][username], response.json() - - with pytest.raises(Project.DoesNotExist): - Project.objects.filter(views=view).get(pk=project_id) + view.sites.set(Site.objects.filter(pk__in=sites)) + view.catalogs.set(Catalog.objects.filter(pk__in=catalogs)) + view.groups.set(Group.objects.filter(pk__in=groups)) + + assert sorted(list(itertools.chain.from_iterable(view.sites.all().values_list('pk')))) == sites + assert sorted(list(itertools.chain.from_iterable(view.catalogs.all().values_list('pk')))) == catalogs + assert sorted(list(itertools.chain.from_iterable(view.groups.all().values_list('pk')))) == groups + + if not project_exists: + with pytest.raises(Project.DoesNotExist): + Project.objects.filter(views=view).get(pk=project_id) + else: + assert Project.objects.filter(views=view).get(pk=project_id) @pytest.mark.parametrize('username,password', users) def test_delete(db, client, username, password): diff --git a/testing/fixtures/groups.json b/testing/fixtures/groups.json index 06b4b67a3a..81187dcba4 100644 --- a/testing/fixtures/groups.json +++ b/testing/fixtures/groups.json @@ -22,5 +22,13 @@ "name": "api", "permissions": [] } + }, + { + "model": "auth.group", + "pk": 4, + "fields": { + "name": "view_test", + "permissions": [] + } } ] \ No newline at end of file diff --git a/testing/fixtures/users.json b/testing/fixtures/users.json index 525181ef09..05f1991419 100644 --- a/testing/fixtures/users.json +++ b/testing/fixtures/users.json @@ -89,7 +89,9 @@ "is_staff": false, "is_active": true, "date_joined": "2017-03-01T13:52:11Z", - "groups": [], + "groups": [ + 4 + ], "user_permissions": [] } }, From 9eacdd7f3d8203edb218530d6052c6965556bcd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Wed, 30 Mar 2022 16:14:03 +0200 Subject: [PATCH 09/12] Moved signal tests into separate file --- rdmo/views/tests/test_signals.py | 62 ++++++++++++++++++++++++++ rdmo/views/tests/test_viewset_view.py | 63 --------------------------- 2 files changed, 62 insertions(+), 63 deletions(-) create mode 100644 rdmo/views/tests/test_signals.py diff --git a/rdmo/views/tests/test_signals.py b/rdmo/views/tests/test_signals.py new file mode 100644 index 0000000000..00b4e31a9f --- /dev/null +++ b/rdmo/views/tests/test_signals.py @@ -0,0 +1,62 @@ +import itertools +import pytest + +from django.contrib.auth.models import Group +from django.contrib.sites.models import Site + +from rdmo.projects.models import Project +from rdmo.questions.models import Catalog + +from ..models import View + +view_update_tests = [ + # tuples of: view_id, sites, catalogs, groups, project_id, project_exists + ('3', [], [], [], '10', True), + ('3', [2], [], [], '10', False), + ('3', [1,2,3], [], [], '10', True), + ('3', [], [2], [], '10', False), + ('3', [2], [2], [], '10', False), + ('3', [1,2,3], [2], [], '10', False), + ('3', [], [1,2], [], '10', True), + ('3', [2], [1,2], [], '10', False), + ('3', [1,2,3], [1,2], [], '10', True), + + ('3', [], [], [1], '10', False), + ('3', [2], [], [1], '10', False), + ('3', [1,2,3], [], [1], '10', False), + ('3', [], [2], [1], '10', False), + ('3', [2], [2], [1], '10', False), + ('3', [1,2,3], [2], [1], '10', False), + ('3', [], [1,2], [1], '10', False), + ('3', [2], [1,2], [1], '10', False), + ('3', [1,2,3], [1,2], [1], '10', False), + + ('3', [], [], [1,2,3,4], '10', True), + ('3', [2], [], [1,2,3,4], '10', False), + ('3', [1,2,3], [], [1,2,3,4], '10', True), + ('3', [], [2], [1,2,3,4], '10', False), + ('3', [2], [2], [1,2,3,4], '10', False), + ('3', [1,2,3], [2], [1,2,3,4], '10', False), + ('3', [], [1,2], [1,2,3,4], '10', True), + ('3', [2], [1,2], [1,2,3,4], '10', False), + ('3', [1,2,3], [1,2], [1,2,3,4], '10', True) +] + +@pytest.mark.parametrize('view_id,sites,catalogs,groups,project_id,project_exists', view_update_tests) +def test_update_projects(db, view_id, sites, catalogs, groups, project_id, project_exists): + view = View.objects.get(pk=view_id) + project = Project.objects.get(pk=project_id) + + view.sites.set(Site.objects.filter(pk__in=sites)) + view.catalogs.set(Catalog.objects.filter(pk__in=catalogs)) + view.groups.set(Group.objects.filter(pk__in=groups)) + + assert sorted(list(itertools.chain.from_iterable(view.sites.all().values_list('pk')))) == sites + assert sorted(list(itertools.chain.from_iterable(view.catalogs.all().values_list('pk')))) == catalogs + assert sorted(list(itertools.chain.from_iterable(view.groups.all().values_list('pk')))) == groups + + if not project_exists: + with pytest.raises(Project.DoesNotExist): + Project.objects.filter(views=view).get(pk=project_id) + else: + assert Project.objects.filter(views=view).get(pk=project_id) diff --git a/rdmo/views/tests/test_viewset_view.py b/rdmo/views/tests/test_viewset_view.py index 5bd0830647..59e16fcbd9 100644 --- a/rdmo/views/tests/test_viewset_view.py +++ b/rdmo/views/tests/test_viewset_view.py @@ -1,14 +1,8 @@ import xml.etree.ElementTree as et -import itertools import pytest -from django.contrib.auth.models import Group -from django.contrib.sites.models import Site from django.urls import reverse -from rdmo.projects.models import Project -from rdmo.questions.models import Catalog - from ..models import View users = ( @@ -19,12 +13,6 @@ ('anonymous', None), ) -view_project_test_users = ( - ('editor', 'editor'), - ('api', 'api'), -) - - status_map = { 'list': { 'editor': 200, 'reviewer': 200, 'api': 200, 'user': 403, 'anonymous': 401 @@ -52,38 +40,6 @@ 'copy': 'v1-views:view-copy' } -view_update_tests = [ - # tuples of: view_id, sites, catalogs, groups, project_id, project_exists - ('3', [], [], [], '10', True), - ('3', [2], [], [], '10', False), - ('3', [1,2,3], [], [], '10', True), - ('3', [], [2], [], '10', False), - ('3', [2], [2], [], '10', False), - ('3', [1,2,3], [2], [], '10', False), - ('3', [], [1,2], [], '10', True), - ('3', [2], [1,2], [], '10', False), - ('3', [1,2,3], [1,2], [], '10', True), - - ('3', [], [], [1], '10', False), - ('3', [2], [], [1], '10', False), - ('3', [1,2,3], [], [1], '10', False), - ('3', [], [2], [1], '10', False), - ('3', [2], [2], [1], '10', False), - ('3', [1,2,3], [2], [1], '10', False), - ('3', [], [1,2], [1], '10', False), - ('3', [2], [1,2], [1], '10', False), - ('3', [1,2,3], [1,2], [1], '10', False), - - ('3', [], [], [1,2,3,4], '10', True), - ('3', [2], [], [1,2,3,4], '10', False), - ('3', [1,2,3], [], [1,2,3,4], '10', True), - ('3', [], [2], [1,2,3,4], '10', False), - ('3', [2], [2], [1,2,3,4], '10', False), - ('3', [1,2,3], [2], [1,2,3,4], '10', False), - ('3', [], [1,2], [1,2,3,4], '10', True), - ('3', [2], [1,2], [1,2,3,4], '10', False), - ('3', [1,2,3], [1,2], [1,2,3,4], '10', True) -] @pytest.mark.parametrize('username,password', users) def test_list(db, client, username, password): @@ -170,25 +126,6 @@ def test_update(db, client, username, password): response = client.put(url, data, content_type='application/json') assert response.status_code == status_map['update'][username], response.json() -@pytest.mark.parametrize('view_id,sites,catalogs,groups,project_id,project_exists', view_update_tests) -def test_update_projects(db, view_id, sites, catalogs, groups, project_id, project_exists): - view = View.objects.get(pk=view_id) - project = Project.objects.get(pk=project_id) - - view.sites.set(Site.objects.filter(pk__in=sites)) - view.catalogs.set(Catalog.objects.filter(pk__in=catalogs)) - view.groups.set(Group.objects.filter(pk__in=groups)) - - assert sorted(list(itertools.chain.from_iterable(view.sites.all().values_list('pk')))) == sites - assert sorted(list(itertools.chain.from_iterable(view.catalogs.all().values_list('pk')))) == catalogs - assert sorted(list(itertools.chain.from_iterable(view.groups.all().values_list('pk')))) == groups - - if not project_exists: - with pytest.raises(Project.DoesNotExist): - Project.objects.filter(views=view).get(pk=project_id) - else: - assert Project.objects.filter(views=view).get(pk=project_id) - @pytest.mark.parametrize('username,password', users) def test_delete(db, client, username, password): client.login(username=username, password=password) From 15ecaa057e86108242c606758788ef0e1fdbc138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Sat, 22 Oct 2022 11:46:37 +0200 Subject: [PATCH 10/12] Moved implementation to projects, code formatting, minor improvements --- rdmo/projects/apps.py | 4 +- .../signals.py => projects/handlers.py} | 34 +- rdmo/projects/tests/test_handlers.py | 60 + rdmo/views/apps.py | 11 - rdmo/views/tests/test_signals.py | 62 - testing/fixtures/projects.json | 9544 ++++++++--------- testing/fixtures/views.json | 154 +- 7 files changed, 4931 insertions(+), 4938 deletions(-) rename rdmo/{views/signals.py => projects/handlers.py} (61%) create mode 100644 rdmo/projects/tests/test_handlers.py delete mode 100644 rdmo/views/tests/test_signals.py diff --git a/rdmo/projects/apps.py b/rdmo/projects/apps.py index 5116ddd681..37d1b898b1 100644 --- a/rdmo/projects/apps.py +++ b/rdmo/projects/apps.py @@ -1,4 +1,5 @@ from django.apps import AppConfig +from django.conf import settings from django.utils.translation import gettext_lazy as _ @@ -7,4 +8,5 @@ class ProjectsConfig(AppConfig): verbose_name = _('Projects') def ready(self): - from . import rules + if settings.PROJECT_REMOVE_VIEWS: + from . import handlers diff --git a/rdmo/views/signals.py b/rdmo/projects/handlers.py similarity index 61% rename from rdmo/views/signals.py rename to rdmo/projects/handlers.py index dc2ce3cf9e..1b46fe1467 100644 --- a/rdmo/views/signals.py +++ b/rdmo/projects/handlers.py @@ -1,53 +1,57 @@ import logging -from django.contrib.auth.models import User, Group +from django.contrib.auth.models import User from django.contrib.sites.models import Site +from django.db.models.signals import m2m_changed +from django.dispatch import receiver from rdmo.questions.models import Catalog from rdmo.projects.models import Project, Membership - -from .models import View +from rdmo.views.models import View logger = logging.getLogger(__name__) +@receiver(m2m_changed, sender=View.catalogs.through) def m2m_changed_view_catalog_signal(sender, instance, **kwargs): catalogs = instance.catalogs.all() - if catalogs.count() > 0: - catalog_candidates = Catalog.objects.exclude(id__in=catalogs.values_list('pk')) + if catalogs: + catalog_candidates = Catalog.objects.exclude(id__in=[catalog.id for catalog in catalogs]) # Remove catalog candidates for all sites projects = Project.objects.filter(catalog__in=catalog_candidates, views=instance) for proj in projects: proj.views.remove(instance) +@receiver(m2m_changed, sender=View.sites.through) def m2m_changed_view_sites_signal(sender, instance, **kwargs): sites = instance.sites.all() catalogs = instance.catalogs.all() - if sites.count() > 0: - site_candidates = Site.objects.exclude(id__in=sites.values_list('pk')) - if catalogs.count() < 1: + if sites: + site_candidates = Site.objects.exclude(id__in=[site.id for site in sites]) + if not catalogs: # if no catalogs are selected, update all catalogs = Catalog.objects.all() # Restrict chosen catalogs for chosen sites projects = Project.objects.filter(site__in=site_candidates, catalog__in=catalogs, views=instance) - for proj in projects: - proj.views.remove(instance) + for project in projects: + project.views.remove(instance) +@receiver(m2m_changed, sender=View.groups.through) def m2m_changed_view_groups_signal(sender, instance, **kwargs): groups = instance.groups.all() catalogs = instance.catalogs.all() - if groups.count() > 0: + if groups: users = User.objects.exclude(groups__in=groups) - memberships = Membership.objects.filter(role='owner', user__in=users).values_list('pk') - if catalogs.count() < 1: + memberships = [membership.id for membership in Membership.objects.filter(role='owner', user__in=users)] + if not catalogs: # if no catalogs are selected, update all catalogs = Catalog.objects.all() # Restrict chosen catalogs for chosen groups projects = Project.objects.filter(memberships__in=list(memberships), catalog__in=catalogs, views=instance) - for proj in projects: - proj.views.remove(instance) + for project in projects: + project.views.remove(instance) diff --git a/rdmo/projects/tests/test_handlers.py b/rdmo/projects/tests/test_handlers.py new file mode 100644 index 0000000000..6ee2a928a5 --- /dev/null +++ b/rdmo/projects/tests/test_handlers.py @@ -0,0 +1,60 @@ +import itertools +import pytest + +from django.contrib.auth.models import Group +from django.contrib.sites.models import Site + +from rdmo.projects.models import Project +from rdmo.questions.models import Catalog +from rdmo.views.models import View + +view_update_tests = [ + # tuples of: view_id, sites, catalogs, groups, project_id, project_exists + ('3', [], [], [], '10', True), + ('3', [2], [], [], '10', False), + ('3', [1, 2, 3], [], [], '10', True), + ('3', [], [2], [], '10', False), + ('3', [2], [2], [], '10', False), + ('3', [1, 2, 3], [2], [], '10', False), + ('3', [], [1, 2], [], '10', True), + ('3', [2], [1, 2], [], '10', False), + ('3', [1, 2, 3], [1, 2], [], '10', True), + + ('3', [], [], [1], '10', False), + ('3', [2], [], [1], '10', False), + ('3', [1, 2, 3], [], [1], '10', False), + ('3', [], [2], [1], '10', False), + ('3', [2], [2], [1], '10', False), + ('3', [1, 2, 3], [2], [1], '10', False), + ('3', [], [1, 2], [1], '10', False), + ('3', [2], [1, 2], [1], '10', False), + ('3', [1, 2, 3], [1, 2], [1], '10', False), + + ('3', [], [], [1, 2, 3, 4], '10', True), + ('3', [2], [], [1, 2, 3, 4], '10', False), + ('3', [1, 2, 3], [], [1, 2, 3, 4], '10', True), + ('3', [], [2], [1, 2, 3, 4], '10', False), + ('3', [2], [2], [1, 2, 3, 4], '10', False), + ('3', [1, 2, 3], [2], [1, 2, 3, 4], '10', False), + ('3', [], [1, 2], [1, 2, 3, 4], '10', True), + ('3', [2], [1, 2], [1, 2, 3, 4], '10', False), + ('3', [1, 2, 3], [1, 2], [1, 2, 3, 4], '10', True) +] + +@pytest.mark.parametrize('view_id,sites,catalogs,groups,project_id,project_exists', view_update_tests) +def test_update_projects(db, view_id, sites, catalogs, groups, project_id, project_exists): + view = View.objects.get(pk=view_id) + + view.sites.set(Site.objects.filter(pk__in=sites)) + view.catalogs.set(Catalog.objects.filter(pk__in=catalogs)) + view.groups.set(Group.objects.filter(pk__in=groups)) + + assert sorted(list(itertools.chain.from_iterable(view.sites.all().values_list('pk')))) == sites + assert sorted(list(itertools.chain.from_iterable(view.catalogs.all().values_list('pk')))) == catalogs + assert sorted(list(itertools.chain.from_iterable(view.groups.all().values_list('pk')))) == groups + + if not project_exists: + with pytest.raises(Project.DoesNotExist): + Project.objects.filter(views=view).get(pk=project_id) + else: + assert Project.objects.filter(views=view).get(pk=project_id) diff --git a/rdmo/views/apps.py b/rdmo/views/apps.py index 1753f147ac..9d832d2b3b 100644 --- a/rdmo/views/apps.py +++ b/rdmo/views/apps.py @@ -1,18 +1,7 @@ from django.apps import AppConfig -from django.conf import settings -from django.db.models.signals import m2m_changed from django.utils.translation import gettext_lazy as _ class ViewsConfig(AppConfig): name = 'rdmo.views' verbose_name = _('Views') - - def ready(self): - from . import signals - from .models import View - - if settings.PROJECT_REMOVE_VIEWS: - m2m_changed.connect(signals.m2m_changed_view_catalog_signal, sender=View.catalogs.through) - m2m_changed.connect(signals.m2m_changed_view_sites_signal, sender=View.sites.through) - m2m_changed.connect(signals.m2m_changed_view_groups_signal, sender=View.groups.through) diff --git a/rdmo/views/tests/test_signals.py b/rdmo/views/tests/test_signals.py deleted file mode 100644 index 00b4e31a9f..0000000000 --- a/rdmo/views/tests/test_signals.py +++ /dev/null @@ -1,62 +0,0 @@ -import itertools -import pytest - -from django.contrib.auth.models import Group -from django.contrib.sites.models import Site - -from rdmo.projects.models import Project -from rdmo.questions.models import Catalog - -from ..models import View - -view_update_tests = [ - # tuples of: view_id, sites, catalogs, groups, project_id, project_exists - ('3', [], [], [], '10', True), - ('3', [2], [], [], '10', False), - ('3', [1,2,3], [], [], '10', True), - ('3', [], [2], [], '10', False), - ('3', [2], [2], [], '10', False), - ('3', [1,2,3], [2], [], '10', False), - ('3', [], [1,2], [], '10', True), - ('3', [2], [1,2], [], '10', False), - ('3', [1,2,3], [1,2], [], '10', True), - - ('3', [], [], [1], '10', False), - ('3', [2], [], [1], '10', False), - ('3', [1,2,3], [], [1], '10', False), - ('3', [], [2], [1], '10', False), - ('3', [2], [2], [1], '10', False), - ('3', [1,2,3], [2], [1], '10', False), - ('3', [], [1,2], [1], '10', False), - ('3', [2], [1,2], [1], '10', False), - ('3', [1,2,3], [1,2], [1], '10', False), - - ('3', [], [], [1,2,3,4], '10', True), - ('3', [2], [], [1,2,3,4], '10', False), - ('3', [1,2,3], [], [1,2,3,4], '10', True), - ('3', [], [2], [1,2,3,4], '10', False), - ('3', [2], [2], [1,2,3,4], '10', False), - ('3', [1,2,3], [2], [1,2,3,4], '10', False), - ('3', [], [1,2], [1,2,3,4], '10', True), - ('3', [2], [1,2], [1,2,3,4], '10', False), - ('3', [1,2,3], [1,2], [1,2,3,4], '10', True) -] - -@pytest.mark.parametrize('view_id,sites,catalogs,groups,project_id,project_exists', view_update_tests) -def test_update_projects(db, view_id, sites, catalogs, groups, project_id, project_exists): - view = View.objects.get(pk=view_id) - project = Project.objects.get(pk=project_id) - - view.sites.set(Site.objects.filter(pk__in=sites)) - view.catalogs.set(Catalog.objects.filter(pk__in=catalogs)) - view.groups.set(Group.objects.filter(pk__in=groups)) - - assert sorted(list(itertools.chain.from_iterable(view.sites.all().values_list('pk')))) == sites - assert sorted(list(itertools.chain.from_iterable(view.catalogs.all().values_list('pk')))) == catalogs - assert sorted(list(itertools.chain.from_iterable(view.groups.all().values_list('pk')))) == groups - - if not project_exists: - with pytest.raises(Project.DoesNotExist): - Project.objects.filter(views=view).get(pk=project_id) - else: - assert Project.objects.filter(views=view).get(pk=project_id) diff --git a/testing/fixtures/projects.json b/testing/fixtures/projects.json index be64492789..5198e8c6d1 100644 --- a/testing/fixtures/projects.json +++ b/testing/fixtures/projects.json @@ -1,5724 +1,5724 @@ [ -{ + { "model": "projects.continuation", "pk": 1, "fields": { - "created": "2021-06-01T15:21:18.566Z", - "updated": "2021-06-02T15:14:32.659Z", - "project": 1, - "user": 1, - "questionset": 87 + "created": "2021-06-01T15:21:18.566Z", + "updated": "2021-06-02T15:14:32.659Z", + "project": 1, + "user": 1, + "questionset": 87 } -}, -{ + }, + { "model": "projects.integration", "pk": 1, "fields": { - "project": 1, - "provider_key": "github" + "project": 1, + "provider_key": "github" } -}, -{ + }, + { "model": "projects.integration", "pk": 2, "fields": { - "project": 2, - "provider_key": "github" + "project": 2, + "provider_key": "github" } -}, -{ + }, + { "model": "projects.integrationoption", "pk": 1, "fields": { - "integration": 1, - "key": "repo", - "value": "example/example", - "secret": false + "integration": 1, + "key": "repo", + "value": "example/example", + "secret": false } -}, -{ + }, + { "model": "projects.integrationoption", "pk": 2, "fields": { - "integration": 1, - "key": "secret", - "value": "super_duper_secret", - "secret": false + "integration": 1, + "key": "secret", + "value": "super_duper_secret", + "secret": false } -}, -{ + }, + { "model": "projects.integrationoption", "pk": 3, "fields": { - "integration": 2, - "key": "repo", - "value": "example/example", - "secret": false + "integration": 2, + "key": "repo", + "value": "example/example", + "secret": false } -}, -{ + }, + { "model": "projects.integrationoption", "pk": 4, "fields": { - "integration": 2, - "key": "secret", - "value": "super_duper_secret", - "secret": true + "integration": 2, + "key": "secret", + "value": "super_duper_secret", + "secret": true } -}, -{ + }, + { "model": "projects.issue", "pk": 1, "fields": { - "project": 1, - "task": 1, - "status": "open" + "project": 1, + "task": 1, + "status": "open" } -}, -{ + }, + { "model": "projects.issue", "pk": 2, "fields": { - "project": 2, - "task": 1, - "status": "open" + "project": 2, + "task": 1, + "status": "open" } -}, -{ + }, + { "model": "projects.issue", "pk": 3, "fields": { - "project": 3, - "task": 1, - "status": "open" + "project": 3, + "task": 1, + "status": "open" } -}, -{ + }, + { "model": "projects.issue", "pk": 4, "fields": { - "project": 4, - "task": 1, - "status": "open" + "project": 4, + "task": 1, + "status": "open" } -}, -{ + }, + { "model": "projects.issue", "pk": 5, "fields": { - "project": 5, - "task": 1, - "status": "open" + "project": 5, + "task": 1, + "status": "open" } -}, -{ + }, + { "model": "projects.issue", "pk": 6, "fields": { - "project": 10, - "task": 2, - "status": "open" + "project": 10, + "task": 2, + "status": "open" } -}, -{ + }, + { "model": "projects.issue", "pk": 7, "fields": { - "project": 10, - "task": 1, - "status": "open" + "project": 10, + "task": 1, + "status": "open" } -}, -{ + }, + { "model": "projects.issueresource", "pk": 1, "fields": { - "issue": 1, - "integration": 1, - "url": "https://github.com/example/example/issues/1" + "issue": 1, + "integration": 1, + "url": "https://github.com/example/example/issues/1" } -}, -{ + }, + { "model": "projects.membership", "pk": 1, "fields": { - "project": 1, - "user": 5, - "role": "owner" + "project": 1, + "user": 5, + "role": "owner" } -}, -{ + }, + { "model": "projects.membership", "pk": 2, "fields": { - "project": 1, - "user": 6, - "role": "manager" + "project": 1, + "user": 6, + "role": "manager" } -}, -{ + }, + { "model": "projects.membership", "pk": 3, "fields": { - "project": 1, - "user": 7, - "role": "author" + "project": 1, + "user": 7, + "role": "author" } -}, -{ + }, + { "model": "projects.membership", "pk": 4, "fields": { - "project": 1, - "user": 8, - "role": "guest" + "project": 1, + "user": 8, + "role": "guest" } -}, -{ + }, + { "model": "projects.membership", "pk": 5, "fields": { - "project": 2, - "user": 5, - "role": "owner" + "project": 2, + "user": 5, + "role": "owner" } -}, -{ + }, + { "model": "projects.membership", "pk": 6, "fields": { - "project": 3, - "user": 5, - "role": "owner" + "project": 3, + "user": 5, + "role": "owner" } -}, -{ + }, + { "model": "projects.membership", "pk": 7, "fields": { - "project": 4, - "user": 5, - "role": "owner" + "project": 4, + "user": 5, + "role": "owner" } -}, -{ + }, + { "model": "projects.membership", "pk": 8, "fields": { - "project": 5, - "user": 5, - "role": "owner" + "project": 5, + "user": 5, + "role": "owner" } -}, -{ + }, + { "model": "projects.membership", "pk": 9, "fields": { - "project": 3, - "user": 6, - "role": "manager" + "project": 3, + "user": 6, + "role": "manager" } -}, -{ + }, + { "model": "projects.membership", "pk": 10, "fields": { - "project": 3, - "user": 7, - "role": "author" + "project": 3, + "user": 7, + "role": "author" } -}, -{ + }, + { "model": "projects.membership", "pk": 11, "fields": { - "project": 3, - "user": 8, - "role": "guest" + "project": 3, + "user": 8, + "role": "guest" } -}, -{ + }, + { "model": "projects.membership", "pk": 12, "fields": { - "project": 7, - "user": 6, - "role": "manager" + "project": 7, + "user": 6, + "role": "manager" } -}, -{ + }, + { "model": "projects.membership", "pk": 13, "fields": { - "project": 8, - "user": 7, - "role": "author" + "project": 8, + "user": 7, + "role": "author" } -}, -{ + }, + { "model": "projects.membership", "pk": 14, "fields": { - "project": 9, - "user": 8, - "role": "guest" + "project": 9, + "user": 8, + "role": "guest" } -}, -{ + }, + { "model": "projects.membership", "pk": 15, "fields": { - "project": 10, - "user": 5, - "role": "owner" + "project": 10, + "user": 5, + "role": "owner" } -}, -{ + }, + { "model": "projects.project", "pk": 1, "fields": { - "created": "2017-01-30T07:55:13.007Z", - "updated": "2017-03-01T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Test", - "description": "This is a test!", - "catalog": 1, - "lft": 1, - "rght": 2, - "tree_id": 1, - "level": 0, - "views": [ - 1 - ] - } -}, -{ + "created": "2017-01-30T07:55:13.007Z", + "updated": "2017-03-01T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Test", + "description": "This is a test!", + "catalog": 1, + "lft": 1, + "rght": 2, + "tree_id": 1, + "level": 0, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 2, "fields": { - "created": "2020-12-07T11:55:36.442Z", - "updated": "2020-12-07T11:56:35.856Z", - "parent": null, - "site": 1, - "title": "Parent", - "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", - "catalog": 1, - "lft": 1, - "rght": 6, - "tree_id": 2, - "level": 0, - "views": [ - 1 - ] - } -}, -{ + "created": "2020-12-07T11:55:36.442Z", + "updated": "2020-12-07T11:56:35.856Z", + "parent": null, + "site": 1, + "title": "Parent", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", + "catalog": 1, + "lft": 1, + "rght": 6, + "tree_id": 2, + "level": 0, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 3, "fields": { - "created": "2020-12-07T11:55:59.339Z", - "updated": "2020-12-07T11:55:59.339Z", - "parent": 2, - "site": 1, - "title": "Child1", - "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "catalog": 1, - "lft": 2, - "rght": 5, - "tree_id": 2, - "level": 1, - "views": [ - 1 - ] - } -}, -{ + "created": "2020-12-07T11:55:59.339Z", + "updated": "2020-12-07T11:55:59.339Z", + "parent": 2, + "site": 1, + "title": "Child1", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "catalog": 1, + "lft": 2, + "rght": 5, + "tree_id": 2, + "level": 1, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 4, "fields": { - "created": "2020-12-07T11:56:11.992Z", - "updated": "2020-12-07T11:56:19.183Z", - "parent": 2, - "site": 1, - "title": "Child2", - "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", - "catalog": 1, - "lft": 10, - "rght": 11, - "tree_id": 2, - "level": 1, - "views": [ - 1 - ] - } -}, -{ + "created": "2020-12-07T11:56:11.992Z", + "updated": "2020-12-07T11:56:19.183Z", + "parent": 2, + "site": 1, + "title": "Child2", + "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est.", + "catalog": 1, + "lft": 10, + "rght": 11, + "tree_id": 2, + "level": 1, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 5, "fields": { - "created": "2020-12-13T11:03:53.637Z", - "updated": "2020-12-13T11:03:53.637Z", - "parent": 3, - "site": 1, - "title": "Child11", - "description": "", - "catalog": 1, - "lft": 3, - "rght": 4, - "tree_id": 2, - "level": 2, - "views": [ - 1 - ] - } -}, -{ + "created": "2020-12-13T11:03:53.637Z", + "updated": "2020-12-13T11:03:53.637Z", + "parent": 3, + "site": 1, + "title": "Child11", + "description": "", + "catalog": 1, + "lft": 3, + "rght": 4, + "tree_id": 2, + "level": 2, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 6, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 2, - "rght": 7, - "tree_id": 3, - "level": 0, - "views": [ - 1 - ] - } -}, -{ + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 2, + "rght": 7, + "tree_id": 3, + "level": 0, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 7, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 6, - "rght": 8, - "tree_id": 4, - "level": 0, - "views": [ - 1 - ] - } -}, -{ + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 6, + "rght": 8, + "tree_id": 4, + "level": 0, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 8, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 7, - "rght": 9, - "tree_id": 5, - "level": 0, - "views": [ - 1 - ] - } -}, -{ + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 7, + "rght": 9, + "tree_id": 5, + "level": 0, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 9, "fields": { - "created": "2021-10-12T07:55:13.007Z", - "updated": "2021-10-12T13:57:34.993Z", - "parent": null, - "site": 1, - "title": "Prune Test", - "description": "This is a test!", - "catalog": 1, - "lft": 8, - "rght": 12, - "tree_id": 6, - "level": 0, - "views": [ - 1 - ] - } -}, -{ + "created": "2021-10-12T07:55:13.007Z", + "updated": "2021-10-12T13:57:34.993Z", + "parent": null, + "site": 1, + "title": "Prune Test", + "description": "This is a test!", + "catalog": 1, + "lft": 8, + "rght": 12, + "tree_id": 6, + "level": 0, + "views": [ + 1 + ] + } + }, + { "model": "projects.project", "pk": 10, "fields": { - "created": "2022-03-18T09:22:57.948Z", - "updated": "2022-03-18T09:26:17.893Z", - "parent": null, - "site": 1, - "title": "View Test", - "description": "", - "catalog": 1, - "lft": 1, - "rght": 2, - "tree_id": 7, - "level": 0, - "views": [ - 1, - 2, - 3 - ] - } -}, -{ + "created": "2022-03-18T09:22:57.948Z", + "updated": "2022-03-18T09:26:17.893Z", + "parent": null, + "site": 1, + "title": "View Test", + "description": "", + "catalog": 1, + "lft": 1, + "rght": 2, + "tree_id": 7, + "level": 0, + "views": [ + 1, + 2, + 3 + ] + } + }, + { "model": "projects.snapshot", "pk": 1, "fields": { - "created": "2018-08-30T12:09:19.774Z", - "updated": "2018-08-30T12:09:45.416Z", - "project": 1, - "title": "A first snapshot", - "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua." + "created": "2018-08-30T12:09:19.774Z", + "updated": "2018-08-30T12:09:45.416Z", + "project": 1, + "title": "A first snapshot", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua." } -}, -{ + }, + { "model": "projects.snapshot", "pk": 3, "fields": { - "created": "2021-01-07T13:00:55.195Z", - "updated": "2021-01-07T13:00:55.195Z", - "project": 2, - "title": "Test", - "description": "" + "created": "2021-01-07T13:00:55.195Z", + "updated": "2021-01-07T13:00:55.195Z", + "project": 2, + "title": "Test", + "description": "" } -}, -{ + }, + { "model": "projects.snapshot", "pk": 4, "fields": { - "created": "2021-01-07T13:00:59.668Z", - "updated": "2021-01-07T13:00:59.668Z", - "project": 3, - "title": "Test", - "description": "" + "created": "2021-01-07T13:00:59.668Z", + "updated": "2021-01-07T13:00:59.668Z", + "project": 3, + "title": "Test", + "description": "" } -}, -{ + }, + { "model": "projects.snapshot", "pk": 5, "fields": { - "created": "2021-01-07T13:01:03.895Z", - "updated": "2021-01-07T13:01:03.895Z", - "project": 4, - "title": "Test", - "description": "" + "created": "2021-01-07T13:01:03.895Z", + "updated": "2021-01-07T13:01:03.895Z", + "project": 4, + "title": "Test", + "description": "" } -}, -{ + }, + { "model": "projects.snapshot", "pk": 6, "fields": { - "created": "2021-01-07T13:01:08.372Z", - "updated": "2021-01-07T13:01:08.372Z", - "project": 5, - "title": "Test", - "description": "" + "created": "2021-01-07T13:01:08.372Z", + "updated": "2021-01-07T13:01:08.372Z", + "project": 5, + "title": "Test", + "description": "" } -}, -{ + }, + { "model": "projects.snapshot", "pk": 7, "fields": { - "created": "2021-02-21T12:32:42.677Z", - "updated": "2021-02-21T12:32:54.725Z", - "project": 1, - "title": "A second snapshot", - "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet." + "created": "2021-02-21T12:32:42.677Z", + "updated": "2021-02-21T12:32:54.725Z", + "project": 1, + "title": "A second snapshot", + "description": "At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet." } -}, -{ + }, + { "model": "projects.value", "pk": 1, "fields": { - "created": "2017-04-25T14:52:59.412Z", - "updated": "2018-07-23T12:15:12.912Z", - "project": 1, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:52:59.412Z", + "updated": "2018-07-23T12:15:12.912Z", + "project": 1, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 2, "fields": { - "created": "2017-04-25T14:53:03.399Z", - "updated": "2018-07-20T15:08:28.850Z", - "project": 1, - "snapshot": null, - "attribute": 4, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:03.399Z", + "updated": "2018-07-20T15:08:28.850Z", + "project": 1, + "snapshot": null, + "attribute": 4, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 3, "fields": { - "created": "2017-04-25T14:53:05.503Z", - "updated": "2018-07-20T15:08:28.881Z", - "project": 1, - "snapshot": null, - "attribute": 8, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:05.503Z", + "updated": "2018-07-20T15:08:28.881Z", + "project": 1, + "snapshot": null, + "attribute": 8, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 4, "fields": { - "created": "2017-04-25T14:53:12.956Z", - "updated": "2018-07-20T15:08:28.883Z", - "project": 1, - "snapshot": null, - "attribute": 11, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum", - "option": 7, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:12.956Z", + "updated": "2018-07-20T15:08:28.883Z", + "project": 1, + "snapshot": null, + "attribute": 11, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum", + "option": 7, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 5, "fields": { - "created": "2017-04-25T14:53:15.855Z", - "updated": "2018-07-20T15:08:28.893Z", - "project": 1, - "snapshot": null, - "attribute": 12, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:15.855Z", + "updated": "2018-07-20T15:08:28.893Z", + "project": 1, + "snapshot": null, + "attribute": 12, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 6, "fields": { - "created": "2017-04-25T14:53:21.131Z", - "updated": "2018-07-20T15:08:28.888Z", - "project": 1, - "snapshot": null, - "attribute": 7, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "37", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:21.131Z", + "updated": "2018-07-20T15:08:28.888Z", + "project": 1, + "snapshot": null, + "attribute": 7, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "37", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 7, "fields": { - "created": "2017-04-25T14:53:30.134Z", - "updated": "2018-07-31T11:16:36.138Z", - "project": 1, - "snapshot": null, - "attribute": 9, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-01T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:30.134Z", + "updated": "2018-07-31T11:16:36.138Z", + "project": 1, + "snapshot": null, + "attribute": 9, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-01T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 8, "fields": { - "created": "2017-04-25T14:53:40.735Z", - "updated": "2018-07-20T15:08:34.026Z", - "project": 1, - "snapshot": null, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:40.735Z", + "updated": "2018-07-20T15:08:34.026Z", + "project": 1, + "snapshot": null, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 9, "fields": { - "created": "2017-04-25T14:53:40.744Z", - "updated": "2018-07-20T15:08:34.031Z", - "project": 1, - "snapshot": null, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:40.744Z", + "updated": "2018-07-20T15:08:34.031Z", + "project": 1, + "snapshot": null, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 10, "fields": { - "created": "2017-04-25T14:53:45.659Z", - "updated": "2018-07-20T15:08:34.052Z", - "project": 1, - "snapshot": null, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:45.659Z", + "updated": "2018-07-20T15:08:34.052Z", + "project": 1, + "snapshot": null, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 11, "fields": { - "created": "2017-04-25T14:53:56.532Z", - "updated": "2018-07-20T15:08:34.045Z", - "project": 1, - "snapshot": null, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:56.532Z", + "updated": "2018-07-20T15:08:34.045Z", + "project": 1, + "snapshot": null, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 12, "fields": { - "created": "2017-04-25T14:54:01.077Z", - "updated": "2018-07-20T15:08:34.037Z", - "project": 1, - "snapshot": null, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:01.077Z", + "updated": "2018-07-20T15:08:34.037Z", + "project": 1, + "snapshot": null, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 13, "fields": { - "created": "2017-04-25T14:54:01.087Z", - "updated": "2018-07-20T15:08:34.069Z", - "project": 1, - "snapshot": null, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:01.087Z", + "updated": "2018-07-20T15:08:34.069Z", + "project": 1, + "snapshot": null, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 14, "fields": { - "created": "2017-04-25T14:54:01.088Z", - "updated": "2018-07-20T15:08:34.087Z", - "project": 1, - "snapshot": null, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:01.088Z", + "updated": "2018-07-20T15:08:34.087Z", + "project": 1, + "snapshot": null, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 15, "fields": { - "created": "2017-04-25T14:54:41.838Z", - "updated": "2018-07-20T15:08:34.141Z", - "project": 1, - "snapshot": null, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:41.838Z", + "updated": "2018-07-20T15:08:34.141Z", + "project": 1, + "snapshot": null, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 16, "fields": { - "created": "2017-04-25T14:54:41.842Z", - "updated": "2018-07-20T15:08:34.143Z", - "project": 1, - "snapshot": null, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:41.842Z", + "updated": "2018-07-20T15:08:34.143Z", + "project": 1, + "snapshot": null, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 17, "fields": { - "created": "2017-04-25T14:54:41.844Z", - "updated": "2018-07-20T15:08:34.101Z", - "project": 1, - "snapshot": null, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:41.844Z", + "updated": "2018-07-20T15:08:34.101Z", + "project": 1, + "snapshot": null, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 18, "fields": { - "created": "2017-04-25T14:54:48.745Z", - "updated": "2018-07-20T15:08:34.154Z", - "project": 1, - "snapshot": null, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:48.745Z", + "updated": "2018-07-20T15:08:34.154Z", + "project": 1, + "snapshot": null, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 19, "fields": { - "created": "2017-04-25T14:54:48.750Z", - "updated": "2018-07-20T15:08:34.167Z", - "project": 1, - "snapshot": null, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:48.750Z", + "updated": "2018-07-20T15:08:34.167Z", + "project": 1, + "snapshot": null, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 20, "fields": { - "created": "2017-04-25T14:54:48.751Z", - "updated": "2018-07-20T15:08:34.131Z", - "project": 1, - "snapshot": null, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:48.751Z", + "updated": "2018-07-20T15:08:34.131Z", + "project": 1, + "snapshot": null, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 21, "fields": { - "created": "2017-04-25T14:54:57.674Z", - "updated": "2018-07-20T15:08:34.223Z", - "project": 1, - "snapshot": null, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "50", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:57.674Z", + "updated": "2018-07-20T15:08:34.223Z", + "project": 1, + "snapshot": null, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "50", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 22, "fields": { - "created": "2017-04-25T14:54:57.682Z", - "updated": "2018-07-20T15:08:34.185Z", - "project": 1, - "snapshot": null, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:57.682Z", + "updated": "2018-07-20T15:08:34.185Z", + "project": 1, + "snapshot": null, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 23, "fields": { - "created": "2017-04-25T14:54:57.685Z", - "updated": "2018-07-20T15:08:34.208Z", - "project": 1, - "snapshot": null, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "100", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:57.685Z", + "updated": "2018-07-20T15:08:34.208Z", + "project": 1, + "snapshot": null, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "100", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 24, "fields": { - "created": "2017-04-25T14:55:06.062Z", - "updated": "2018-07-20T15:08:34.224Z", - "project": 1, - "snapshot": null, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2017-04-02T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:06.062Z", + "updated": "2018-07-20T15:08:34.224Z", + "project": 1, + "snapshot": null, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2017-04-02T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 25, "fields": { - "created": "2017-04-25T14:55:06.073Z", - "updated": "2018-07-20T15:08:34.226Z", - "project": 1, - "snapshot": null, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2017-04-01T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:06.073Z", + "updated": "2018-07-20T15:08:34.226Z", + "project": 1, + "snapshot": null, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2017-04-01T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 26, "fields": { - "created": "2017-04-25T14:55:06.075Z", - "updated": "2018-07-20T15:08:34.264Z", - "project": 1, - "snapshot": null, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "2017-04-03T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:06.075Z", + "updated": "2018-07-20T15:08:34.264Z", + "project": 1, + "snapshot": null, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "2017-04-03T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 27, "fields": { - "created": "2017-04-25T14:55:11.016Z", - "updated": "2018-07-20T15:08:34.265Z", - "project": 1, - "snapshot": null, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:11.016Z", + "updated": "2018-07-20T15:08:34.265Z", + "project": 1, + "snapshot": null, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 29, "fields": { - "created": "2017-04-25T14:55:19.847Z", - "updated": "2018-07-20T15:09:31.505Z", - "project": 1, - "snapshot": null, - "attribute": 49, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:19.847Z", + "updated": "2018-07-20T15:09:31.505Z", + "project": 1, + "snapshot": null, + "attribute": 49, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 30, "fields": { - "created": "2017-04-25T14:55:19.853Z", - "updated": "2018-07-20T15:09:31.508Z", - "project": 1, - "snapshot": null, - "attribute": 50, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:19.853Z", + "updated": "2018-07-20T15:09:31.508Z", + "project": 1, + "snapshot": null, + "attribute": 50, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 31, "fields": { - "created": "2017-04-25T14:55:25.443Z", - "updated": "2018-07-20T15:27:00.982Z", - "project": 1, - "snapshot": null, - "attribute": 47, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:25.443Z", + "updated": "2018-07-20T15:27:00.982Z", + "project": 1, + "snapshot": null, + "attribute": 47, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 32, "fields": { - "created": "2017-04-25T14:55:25.449Z", - "updated": "2018-07-20T15:27:00.979Z", - "project": 1, - "snapshot": null, - "attribute": 48, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:25.449Z", + "updated": "2018-07-20T15:27:00.979Z", + "project": 1, + "snapshot": null, + "attribute": 48, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 34, "fields": { - "created": "2017-04-25T14:55:30.120Z", - "updated": "2018-07-20T15:27:01.167Z", - "project": 1, - "snapshot": null, - "attribute": 48, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:30.120Z", + "updated": "2018-07-20T15:27:01.167Z", + "project": 1, + "snapshot": null, + "attribute": 48, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 35, "fields": { - "created": "2017-04-25T14:55:30.124Z", - "updated": "2018-07-20T15:27:01.174Z", - "project": 1, - "snapshot": null, - "attribute": 47, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:30.124Z", + "updated": "2018-07-20T15:27:01.174Z", + "project": 1, + "snapshot": null, + "attribute": 47, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 46, "fields": { - "created": "2018-07-20T15:08:22.495Z", - "updated": "2018-07-20T15:08:34.266Z", - "project": 1, - "snapshot": null, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:22.495Z", + "updated": "2018-07-20T15:08:34.266Z", + "project": 1, + "snapshot": null, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 47, "fields": { - "created": "2018-07-20T15:08:38.974Z", - "updated": "2018-07-20T15:09:31.574Z", - "project": 1, - "snapshot": null, - "attribute": 49, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.974Z", + "updated": "2018-07-20T15:09:31.574Z", + "project": 1, + "snapshot": null, + "attribute": 49, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 48, "fields": { - "created": "2018-07-20T15:08:38.975Z", - "updated": "2018-07-20T15:09:31.585Z", - "project": 1, - "snapshot": null, - "attribute": 50, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.975Z", + "updated": "2018-07-20T15:09:31.585Z", + "project": 1, + "snapshot": null, + "attribute": 50, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 49, "fields": { - "created": "2018-07-20T15:08:38.976Z", - "updated": "2018-07-20T15:09:31.623Z", - "project": 1, - "snapshot": null, - "attribute": 74, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.976Z", + "updated": "2018-07-20T15:09:31.623Z", + "project": 1, + "snapshot": null, + "attribute": 74, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 50, "fields": { - "created": "2018-07-20T15:08:38.982Z", - "updated": "2018-07-20T15:09:31.595Z", - "project": 1, - "snapshot": null, - "attribute": 70, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.982Z", + "updated": "2018-07-20T15:09:31.595Z", + "project": 1, + "snapshot": null, + "attribute": 70, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 51, "fields": { - "created": "2018-07-20T15:08:38.992Z", - "updated": "2018-07-20T15:09:31.621Z", - "project": 1, - "snapshot": null, - "attribute": 76, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.992Z", + "updated": "2018-07-20T15:09:31.621Z", + "project": 1, + "snapshot": null, + "attribute": 76, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 52, "fields": { - "created": "2018-07-20T15:08:38.997Z", - "updated": "2018-07-20T15:09:31.644Z", - "project": 1, - "snapshot": null, - "attribute": 75, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.997Z", + "updated": "2018-07-20T15:09:31.644Z", + "project": 1, + "snapshot": null, + "attribute": 75, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 53, "fields": { - "created": "2018-07-20T15:08:39.010Z", - "updated": "2018-07-20T15:09:31.645Z", - "project": 1, - "snapshot": null, - "attribute": 71, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:39.010Z", + "updated": "2018-07-20T15:09:31.645Z", + "project": 1, + "snapshot": null, + "attribute": 71, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 54, "fields": { - "created": "2018-07-20T15:09:23.797Z", - "updated": "2018-07-20T15:09:31.514Z", - "project": 1, - "snapshot": null, - "attribute": 70, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.797Z", + "updated": "2018-07-20T15:09:31.514Z", + "project": 1, + "snapshot": null, + "attribute": 70, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 55, "fields": { - "created": "2018-07-20T15:09:23.807Z", - "updated": "2018-07-20T15:09:31.525Z", - "project": 1, - "snapshot": null, - "attribute": 75, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.807Z", + "updated": "2018-07-20T15:09:31.525Z", + "project": 1, + "snapshot": null, + "attribute": 75, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 56, "fields": { - "created": "2018-07-20T15:09:23.804Z", - "updated": "2018-07-20T15:09:31.543Z", - "project": 1, - "snapshot": null, - "attribute": 74, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.804Z", + "updated": "2018-07-20T15:09:31.543Z", + "project": 1, + "snapshot": null, + "attribute": 74, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 57, "fields": { - "created": "2018-07-20T15:09:23.813Z", - "updated": "2018-07-20T15:09:31.530Z", - "project": 1, - "snapshot": null, - "attribute": 76, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.813Z", + "updated": "2018-07-20T15:09:31.530Z", + "project": 1, + "snapshot": null, + "attribute": 76, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 58, "fields": { - "created": "2018-07-20T15:09:23.833Z", - "updated": "2018-07-20T15:09:31.565Z", - "project": 1, - "snapshot": null, - "attribute": 71, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.833Z", + "updated": "2018-07-20T15:09:31.565Z", + "project": 1, + "snapshot": null, + "attribute": 71, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 59, "fields": { - "created": "2018-07-20T15:27:00.962Z", - "updated": "2018-07-20T15:27:00.962Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.962Z", + "updated": "2018-07-20T15:27:00.962Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 60, "fields": { - "created": "2018-07-20T15:27:00.980Z", - "updated": "2018-07-20T15:27:00.980Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.980Z", + "updated": "2018-07-20T15:27:00.980Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 61, "fields": { - "created": "2018-07-20T15:27:00.981Z", - "updated": "2018-07-20T15:27:00.981Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.981Z", + "updated": "2018-07-20T15:27:00.981Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 62, "fields": { - "created": "2018-07-20T15:27:00.995Z", - "updated": "2018-07-20T15:27:00.995Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.995Z", + "updated": "2018-07-20T15:27:00.995Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 63, "fields": { - "created": "2018-07-20T15:27:01.061Z", - "updated": "2018-07-20T15:27:01.061Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.061Z", + "updated": "2018-07-20T15:27:01.061Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 64, "fields": { - "created": "2018-07-20T15:27:01.072Z", - "updated": "2018-07-20T15:27:01.072Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.072Z", + "updated": "2018-07-20T15:27:01.072Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 65, "fields": { - "created": "2018-07-20T15:27:01.080Z", - "updated": "2018-07-20T15:27:01.080Z", - "project": 1, - "snapshot": null, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "16", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.080Z", + "updated": "2018-07-20T15:27:01.080Z", + "project": 1, + "snapshot": null, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "16", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 66, "fields": { - "created": "2018-07-20T15:27:01.087Z", - "updated": "2018-07-20T15:27:01.087Z", - "project": 1, - "snapshot": null, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.087Z", + "updated": "2018-07-20T15:27:01.087Z", + "project": 1, + "snapshot": null, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 67, "fields": { - "created": "2018-07-20T15:27:01.090Z", - "updated": "2018-07-20T15:27:01.090Z", - "project": 1, - "snapshot": null, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.090Z", + "updated": "2018-07-20T15:27:01.090Z", + "project": 1, + "snapshot": null, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 68, "fields": { - "created": "2018-07-20T15:27:01.093Z", - "updated": "2018-07-20T15:27:01.093Z", - "project": 1, - "snapshot": null, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "31", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.093Z", + "updated": "2018-07-20T15:27:01.093Z", + "project": 1, + "snapshot": null, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "31", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 69, "fields": { - "created": "2018-07-20T15:27:01.110Z", - "updated": "2018-07-20T15:27:01.110Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.110Z", + "updated": "2018-07-20T15:27:01.110Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 70, "fields": { - "created": "2018-07-20T15:27:01.126Z", - "updated": "2018-07-20T15:27:01.126Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.126Z", + "updated": "2018-07-20T15:27:01.126Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 71, "fields": { - "created": "2018-07-20T15:27:01.133Z", - "updated": "2018-07-20T15:27:01.133Z", - "project": 1, - "snapshot": null, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.133Z", + "updated": "2018-07-20T15:27:01.133Z", + "project": 1, + "snapshot": null, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 72, "fields": { - "created": "2018-07-20T15:27:01.151Z", - "updated": "2018-07-20T15:27:01.151Z", - "project": 1, - "snapshot": null, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.151Z", + "updated": "2018-07-20T15:27:01.151Z", + "project": 1, + "snapshot": null, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 73, "fields": { - "created": "2018-07-20T15:27:01.189Z", - "updated": "2018-07-20T15:27:01.189Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.189Z", + "updated": "2018-07-20T15:27:01.189Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 74, "fields": { - "created": "2018-07-20T15:27:01.190Z", - "updated": "2018-07-20T15:27:01.190Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.190Z", + "updated": "2018-07-20T15:27:01.190Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 75, "fields": { - "created": "2018-07-20T15:27:01.191Z", - "updated": "2018-07-20T15:27:01.191Z", - "project": 1, - "snapshot": null, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.191Z", + "updated": "2018-07-20T15:27:01.191Z", + "project": 1, + "snapshot": null, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 76, "fields": { - "created": "2018-07-20T15:27:01.213Z", - "updated": "2018-07-20T15:27:01.213Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.213Z", + "updated": "2018-07-20T15:27:01.213Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 77, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2018-07-20T15:27:01.233Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.233Z", + "updated": "2018-07-20T15:27:01.233Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 78, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2018-07-20T15:27:01.233Z", - "project": 1, - "snapshot": null, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.233Z", + "updated": "2018-07-20T15:27:01.233Z", + "project": 1, + "snapshot": null, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 79, "fields": { - "created": "2018-07-20T15:27:01.247Z", - "updated": "2018-07-20T15:27:01.247Z", - "project": 1, - "snapshot": null, - "attribute": 68, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.247Z", + "updated": "2018-07-20T15:27:01.247Z", + "project": 1, + "snapshot": null, + "attribute": 68, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 80, "fields": { - "created": "2018-07-20T15:27:01.256Z", - "updated": "2018-07-20T15:27:01.256Z", - "project": 1, - "snapshot": null, - "attribute": 67, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "86", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.256Z", + "updated": "2018-07-20T15:27:01.256Z", + "project": 1, + "snapshot": null, + "attribute": 67, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "86", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 81, "fields": { - "created": "2018-07-20T15:27:01.265Z", - "updated": "2018-07-20T15:27:01.265Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-10-07T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.265Z", + "updated": "2018-07-20T15:27:01.265Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-10-07T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 82, "fields": { - "created": "2018-07-20T15:27:01.277Z", - "updated": "2018-07-20T15:27:01.277Z", - "project": 1, - "snapshot": null, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "2018-11-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.277Z", + "updated": "2018-07-20T15:27:01.277Z", + "project": 1, + "snapshot": null, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "2018-11-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 83, "fields": { - "created": "2018-07-20T15:27:01.282Z", - "updated": "2018-07-20T15:27:01.282Z", - "project": 1, - "snapshot": null, - "attribute": 78, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.282Z", + "updated": "2018-07-20T15:27:01.282Z", + "project": 1, + "snapshot": null, + "attribute": 78, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 84, "fields": { - "created": "2018-07-23T11:10:30.841Z", - "updated": "2018-08-30T12:10:29.720Z", - "project": 1, - "snapshot": null, - "attribute": 79, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "First", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:10:30.841Z", + "updated": "2018-08-30T12:10:29.720Z", + "project": 1, + "snapshot": null, + "attribute": 79, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "First", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 85, "fields": { - "created": "2018-07-23T11:10:33.797Z", - "updated": "2018-08-30T12:10:34.986Z", - "project": 1, - "snapshot": null, - "attribute": 79, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Second", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:10:33.797Z", + "updated": "2018-08-30T12:10:34.986Z", + "project": 1, + "snapshot": null, + "attribute": 79, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Second", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 86, "fields": { - "created": "2018-07-23T11:29:20.935Z", - "updated": "2018-07-31T11:15:48.762Z", - "project": 1, - "snapshot": null, - "attribute": 81, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "test", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:29:20.935Z", + "updated": "2018-07-31T11:15:48.762Z", + "project": 1, + "snapshot": null, + "attribute": 81, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "test", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 87, "fields": { - "created": "2018-07-23T11:30:48.237Z", - "updated": "2018-07-31T11:43:43.080Z", - "project": 1, - "snapshot": null, - "attribute": 82, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:30:48.237Z", + "updated": "2018-07-31T11:43:43.080Z", + "project": 1, + "snapshot": null, + "attribute": 82, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 88, "fields": { - "created": "2018-08-30T12:09:19.778Z", - "updated": "2018-08-30T12:09:19.778Z", - "project": 1, - "snapshot": 1, - "attribute": 82, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.778Z", + "updated": "2018-08-30T12:09:19.778Z", + "project": 1, + "snapshot": 1, + "attribute": 82, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 89, "fields": { - "created": "2018-08-30T12:09:19.780Z", - "updated": "2018-08-30T12:09:19.780Z", - "project": 1, - "snapshot": 1, - "attribute": 81, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "test", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.780Z", + "updated": "2018-08-30T12:09:19.780Z", + "project": 1, + "snapshot": 1, + "attribute": 81, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "test", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 90, "fields": { - "created": "2018-08-30T12:09:19.781Z", - "updated": "2018-08-30T12:09:19.781Z", - "project": 1, - "snapshot": 1, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.781Z", + "updated": "2018-08-30T12:09:19.781Z", + "project": 1, + "snapshot": 1, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 91, "fields": { - "created": "2018-08-30T12:09:19.781Z", - "updated": "2018-08-30T12:09:19.781Z", - "project": 1, - "snapshot": 1, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.781Z", + "updated": "2018-08-30T12:09:19.781Z", + "project": 1, + "snapshot": 1, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 92, "fields": { - "created": "2018-08-30T12:09:19.782Z", - "updated": "2018-08-30T12:09:19.782Z", - "project": 1, - "snapshot": 1, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.782Z", + "updated": "2018-08-30T12:09:19.782Z", + "project": 1, + "snapshot": 1, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 93, "fields": { - "created": "2018-08-30T12:09:19.783Z", - "updated": "2018-08-30T12:09:19.783Z", - "project": 1, - "snapshot": 1, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.783Z", + "updated": "2018-08-30T12:09:19.783Z", + "project": 1, + "snapshot": 1, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 94, "fields": { - "created": "2018-08-30T12:09:19.783Z", - "updated": "2018-08-30T12:09:19.783Z", - "project": 1, - "snapshot": 1, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.783Z", + "updated": "2018-08-30T12:09:19.783Z", + "project": 1, + "snapshot": 1, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 95, "fields": { - "created": "2018-08-30T12:09:19.784Z", - "updated": "2018-08-30T12:09:19.784Z", - "project": 1, - "snapshot": 1, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2017-04-01T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.784Z", + "updated": "2018-08-30T12:09:19.784Z", + "project": 1, + "snapshot": 1, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2017-04-01T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 96, "fields": { - "created": "2018-08-30T12:09:19.785Z", - "updated": "2018-08-30T12:09:19.785Z", - "project": 1, - "snapshot": 1, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2017-04-02T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.785Z", + "updated": "2018-08-30T12:09:19.785Z", + "project": 1, + "snapshot": 1, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2017-04-02T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 97, "fields": { - "created": "2018-08-30T12:09:19.786Z", - "updated": "2018-08-30T12:09:19.786Z", - "project": 1, - "snapshot": 1, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "2017-04-03T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.786Z", + "updated": "2018-08-30T12:09:19.786Z", + "project": 1, + "snapshot": 1, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "2017-04-03T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 98, "fields": { - "created": "2018-08-30T12:09:19.786Z", - "updated": "2018-08-30T12:09:19.786Z", - "project": 1, - "snapshot": 1, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.786Z", + "updated": "2018-08-30T12:09:19.786Z", + "project": 1, + "snapshot": 1, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 99, "fields": { - "created": "2018-08-30T12:09:19.787Z", - "updated": "2018-08-30T12:09:19.787Z", - "project": 1, - "snapshot": 1, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.787Z", + "updated": "2018-08-30T12:09:19.787Z", + "project": 1, + "snapshot": 1, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 100, "fields": { - "created": "2018-08-30T12:09:19.787Z", - "updated": "2018-08-30T12:09:19.787Z", - "project": 1, - "snapshot": 1, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.787Z", + "updated": "2018-08-30T12:09:19.787Z", + "project": 1, + "snapshot": 1, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 101, "fields": { - "created": "2018-08-30T12:09:19.788Z", - "updated": "2018-08-30T12:09:19.788Z", - "project": 1, - "snapshot": 1, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.788Z", + "updated": "2018-08-30T12:09:19.788Z", + "project": 1, + "snapshot": 1, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 102, "fields": { - "created": "2018-08-30T12:09:19.788Z", - "updated": "2018-08-30T12:09:19.788Z", - "project": 1, - "snapshot": 1, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "50", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.788Z", + "updated": "2018-08-30T12:09:19.788Z", + "project": 1, + "snapshot": 1, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "50", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 103, "fields": { - "created": "2018-08-30T12:09:19.788Z", - "updated": "2018-08-30T12:09:19.788Z", - "project": 1, - "snapshot": 1, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "100", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.788Z", + "updated": "2018-08-30T12:09:19.788Z", + "project": 1, + "snapshot": 1, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "100", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 104, "fields": { - "created": "2018-08-30T12:09:19.789Z", - "updated": "2018-08-30T12:09:19.789Z", - "project": 1, - "snapshot": 1, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.789Z", + "updated": "2018-08-30T12:09:19.789Z", + "project": 1, + "snapshot": 1, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 105, "fields": { - "created": "2018-08-30T12:09:19.789Z", - "updated": "2018-08-30T12:09:19.789Z", - "project": 1, - "snapshot": 1, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.789Z", + "updated": "2018-08-30T12:09:19.789Z", + "project": 1, + "snapshot": 1, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 106, "fields": { - "created": "2018-08-30T12:09:19.790Z", - "updated": "2018-08-30T12:09:19.790Z", - "project": 1, - "snapshot": 1, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.790Z", + "updated": "2018-08-30T12:09:19.790Z", + "project": 1, + "snapshot": 1, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 107, "fields": { - "created": "2018-08-30T12:09:19.790Z", - "updated": "2018-08-30T12:09:19.790Z", - "project": 1, - "snapshot": 1, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.790Z", + "updated": "2018-08-30T12:09:19.790Z", + "project": 1, + "snapshot": 1, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 108, "fields": { - "created": "2018-08-30T12:09:19.791Z", - "updated": "2018-08-30T12:09:19.791Z", - "project": 1, - "snapshot": 1, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.791Z", + "updated": "2018-08-30T12:09:19.791Z", + "project": 1, + "snapshot": 1, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 109, "fields": { - "created": "2018-08-30T12:09:19.791Z", - "updated": "2018-08-30T12:09:19.791Z", - "project": 1, - "snapshot": 1, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.791Z", + "updated": "2018-08-30T12:09:19.791Z", + "project": 1, + "snapshot": 1, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 110, "fields": { - "created": "2018-08-30T12:09:19.792Z", - "updated": "2018-08-30T12:09:19.792Z", - "project": 1, - "snapshot": 1, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.792Z", + "updated": "2018-08-30T12:09:19.792Z", + "project": 1, + "snapshot": 1, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 111, "fields": { - "created": "2018-08-30T12:09:19.792Z", - "updated": "2018-08-30T12:09:19.792Z", - "project": 1, - "snapshot": 1, - "attribute": 8, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.792Z", + "updated": "2018-08-30T12:09:19.792Z", + "project": 1, + "snapshot": 1, + "attribute": 8, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 112, "fields": { - "created": "2018-08-30T12:09:19.793Z", - "updated": "2018-08-30T12:09:19.793Z", - "project": 1, - "snapshot": 1, - "attribute": 9, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-01T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.793Z", + "updated": "2018-08-30T12:09:19.793Z", + "project": 1, + "snapshot": 1, + "attribute": 9, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-01T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 113, "fields": { - "created": "2018-08-30T12:09:19.793Z", - "updated": "2018-08-30T12:09:19.793Z", - "project": 1, - "snapshot": 1, - "attribute": 11, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum", - "option": 7, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.793Z", + "updated": "2018-08-30T12:09:19.793Z", + "project": 1, + "snapshot": 1, + "attribute": 11, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum", + "option": 7, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 114, "fields": { - "created": "2018-08-30T12:09:19.793Z", - "updated": "2018-08-30T12:09:19.793Z", - "project": 1, - "snapshot": 1, - "attribute": 7, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "37", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.793Z", + "updated": "2018-08-30T12:09:19.793Z", + "project": 1, + "snapshot": 1, + "attribute": 7, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "37", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 115, "fields": { - "created": "2018-08-30T12:09:19.794Z", - "updated": "2018-08-30T12:09:19.794Z", - "project": 1, - "snapshot": 1, - "attribute": 12, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.794Z", + "updated": "2018-08-30T12:09:19.794Z", + "project": 1, + "snapshot": 1, + "attribute": 12, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 116, "fields": { - "created": "2018-08-30T12:09:19.795Z", - "updated": "2018-08-30T12:09:19.795Z", - "project": 1, - "snapshot": 1, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.795Z", + "updated": "2018-08-30T12:09:19.795Z", + "project": 1, + "snapshot": 1, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 117, "fields": { - "created": "2018-08-30T12:09:19.796Z", - "updated": "2018-08-30T12:09:19.796Z", - "project": 1, - "snapshot": 1, - "attribute": 4, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.796Z", + "updated": "2018-08-30T12:09:19.796Z", + "project": 1, + "snapshot": 1, + "attribute": 4, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 118, "fields": { - "created": "2018-08-30T12:09:19.797Z", - "updated": "2018-08-30T12:09:19.797Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.797Z", + "updated": "2018-08-30T12:09:19.797Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 119, "fields": { - "created": "2018-08-30T12:09:19.798Z", - "updated": "2018-08-30T12:09:19.798Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.798Z", + "updated": "2018-08-30T12:09:19.798Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 120, "fields": { - "created": "2018-08-30T12:09:19.798Z", - "updated": "2018-08-30T12:09:19.798Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.798Z", + "updated": "2018-08-30T12:09:19.798Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 121, "fields": { - "created": "2018-08-30T12:09:19.799Z", - "updated": "2018-08-30T12:09:19.799Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.799Z", + "updated": "2018-08-30T12:09:19.799Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 122, "fields": { - "created": "2018-08-30T12:09:19.799Z", - "updated": "2018-08-30T12:09:19.799Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.799Z", + "updated": "2018-08-30T12:09:19.799Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 123, "fields": { - "created": "2018-08-30T12:09:19.800Z", - "updated": "2018-08-30T12:09:19.800Z", - "project": 1, - "snapshot": 1, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.800Z", + "updated": "2018-08-30T12:09:19.800Z", + "project": 1, + "snapshot": 1, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 124, "fields": { - "created": "2018-08-30T12:09:19.801Z", - "updated": "2018-08-30T12:09:19.801Z", - "project": 1, - "snapshot": 1, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.801Z", + "updated": "2018-08-30T12:09:19.801Z", + "project": 1, + "snapshot": 1, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 125, "fields": { - "created": "2018-08-30T12:09:19.802Z", - "updated": "2018-08-30T12:09:19.802Z", - "project": 1, - "snapshot": 1, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.802Z", + "updated": "2018-08-30T12:09:19.802Z", + "project": 1, + "snapshot": 1, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 126, "fields": { - "created": "2018-08-30T12:09:19.802Z", - "updated": "2018-08-30T12:09:19.802Z", - "project": 1, - "snapshot": 1, - "attribute": 78, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.802Z", + "updated": "2018-08-30T12:09:19.802Z", + "project": 1, + "snapshot": 1, + "attribute": 78, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 127, "fields": { - "created": "2018-08-30T12:09:19.803Z", - "updated": "2018-08-30T12:09:19.803Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.803Z", + "updated": "2018-08-30T12:09:19.803Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 128, "fields": { - "created": "2018-08-30T12:09:19.803Z", - "updated": "2018-08-30T12:09:19.803Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.803Z", + "updated": "2018-08-30T12:09:19.803Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 129, "fields": { - "created": "2018-08-30T12:09:19.804Z", - "updated": "2018-08-30T12:09:19.804Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-10-07T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.804Z", + "updated": "2018-08-30T12:09:19.804Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-10-07T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 130, "fields": { - "created": "2018-08-30T12:09:19.804Z", - "updated": "2018-08-30T12:09:19.804Z", - "project": 1, - "snapshot": 1, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "2018-11-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.804Z", + "updated": "2018-08-30T12:09:19.804Z", + "project": 1, + "snapshot": 1, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "2018-11-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 131, "fields": { - "created": "2018-08-30T12:09:19.805Z", - "updated": "2018-08-30T12:09:19.805Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.805Z", + "updated": "2018-08-30T12:09:19.805Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 132, "fields": { - "created": "2018-08-30T12:09:19.805Z", - "updated": "2018-08-30T12:09:19.805Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.805Z", + "updated": "2018-08-30T12:09:19.805Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 133, "fields": { - "created": "2018-08-30T12:09:19.806Z", - "updated": "2018-08-30T12:09:19.806Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.806Z", + "updated": "2018-08-30T12:09:19.806Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 134, "fields": { - "created": "2018-08-30T12:09:19.806Z", - "updated": "2018-08-30T12:09:19.806Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.806Z", + "updated": "2018-08-30T12:09:19.806Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 135, "fields": { - "created": "2018-08-30T12:09:19.807Z", - "updated": "2018-08-30T12:09:19.807Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.807Z", + "updated": "2018-08-30T12:09:19.807Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 136, "fields": { - "created": "2018-08-30T12:09:19.807Z", - "updated": "2018-08-30T12:09:19.807Z", - "project": 1, - "snapshot": 1, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.807Z", + "updated": "2018-08-30T12:09:19.807Z", + "project": 1, + "snapshot": 1, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 137, "fields": { - "created": "2018-08-30T12:09:19.808Z", - "updated": "2018-08-30T12:09:19.808Z", - "project": 1, - "snapshot": 1, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "16", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.808Z", + "updated": "2018-08-30T12:09:19.808Z", + "project": 1, + "snapshot": 1, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "16", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 138, "fields": { - "created": "2018-08-30T12:09:19.809Z", - "updated": "2018-08-30T12:09:19.809Z", - "project": 1, - "snapshot": 1, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "31", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.809Z", + "updated": "2018-08-30T12:09:19.809Z", + "project": 1, + "snapshot": 1, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "31", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 139, "fields": { - "created": "2018-08-30T12:09:19.810Z", - "updated": "2018-08-30T12:09:19.810Z", - "project": 1, - "snapshot": 1, - "attribute": 67, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "86", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.810Z", + "updated": "2018-08-30T12:09:19.810Z", + "project": 1, + "snapshot": 1, + "attribute": 67, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "86", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 140, "fields": { - "created": "2018-08-30T12:09:19.810Z", - "updated": "2018-08-30T12:09:19.810Z", - "project": 1, - "snapshot": 1, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.810Z", + "updated": "2018-08-30T12:09:19.810Z", + "project": 1, + "snapshot": 1, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 141, "fields": { - "created": "2018-08-30T12:09:19.811Z", - "updated": "2018-08-30T12:09:19.811Z", - "project": 1, - "snapshot": 1, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.811Z", + "updated": "2018-08-30T12:09:19.811Z", + "project": 1, + "snapshot": 1, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 142, "fields": { - "created": "2018-08-30T12:09:19.812Z", - "updated": "2018-08-30T12:09:19.812Z", - "project": 1, - "snapshot": 1, - "attribute": 68, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.812Z", + "updated": "2018-08-30T12:09:19.812Z", + "project": 1, + "snapshot": 1, + "attribute": 68, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 143, "fields": { - "created": "2018-08-30T12:09:19.812Z", - "updated": "2018-08-30T12:09:19.812Z", - "project": 1, - "snapshot": 1, - "attribute": 47, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.812Z", + "updated": "2018-08-30T12:09:19.812Z", + "project": 1, + "snapshot": 1, + "attribute": 47, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 144, "fields": { - "created": "2018-08-30T12:09:19.813Z", - "updated": "2018-08-30T12:09:19.813Z", - "project": 1, - "snapshot": 1, - "attribute": 47, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.813Z", + "updated": "2018-08-30T12:09:19.813Z", + "project": 1, + "snapshot": 1, + "attribute": 47, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 145, "fields": { - "created": "2018-08-30T12:09:19.813Z", - "updated": "2018-08-30T12:09:19.813Z", - "project": 1, - "snapshot": 1, - "attribute": 48, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.813Z", + "updated": "2018-08-30T12:09:19.813Z", + "project": 1, + "snapshot": 1, + "attribute": 48, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 146, "fields": { - "created": "2018-08-30T12:09:19.814Z", - "updated": "2018-08-30T12:09:19.814Z", - "project": 1, - "snapshot": 1, - "attribute": 48, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.814Z", + "updated": "2018-08-30T12:09:19.814Z", + "project": 1, + "snapshot": 1, + "attribute": 48, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 147, "fields": { - "created": "2018-08-30T12:09:19.814Z", - "updated": "2018-08-30T12:09:19.814Z", - "project": 1, - "snapshot": 1, - "attribute": 79, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.814Z", + "updated": "2018-08-30T12:09:19.814Z", + "project": 1, + "snapshot": 1, + "attribute": 79, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 148, "fields": { - "created": "2018-08-30T12:09:19.815Z", - "updated": "2018-08-30T12:09:19.815Z", - "project": 1, - "snapshot": 1, - "attribute": 79, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.815Z", + "updated": "2018-08-30T12:09:19.815Z", + "project": 1, + "snapshot": 1, + "attribute": 79, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 149, "fields": { - "created": "2018-08-30T12:09:19.815Z", - "updated": "2018-08-30T12:09:19.815Z", - "project": 1, - "snapshot": 1, - "attribute": 70, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.815Z", + "updated": "2018-08-30T12:09:19.815Z", + "project": 1, + "snapshot": 1, + "attribute": 70, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 150, "fields": { - "created": "2018-08-30T12:09:19.816Z", - "updated": "2018-08-30T12:09:19.816Z", - "project": 1, - "snapshot": 1, - "attribute": 70, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.816Z", + "updated": "2018-08-30T12:09:19.816Z", + "project": 1, + "snapshot": 1, + "attribute": 70, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 151, "fields": { - "created": "2018-08-30T12:09:19.816Z", - "updated": "2018-08-30T12:09:19.816Z", - "project": 1, - "snapshot": 1, - "attribute": 71, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.816Z", + "updated": "2018-08-30T12:09:19.816Z", + "project": 1, + "snapshot": 1, + "attribute": 71, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 152, "fields": { - "created": "2018-08-30T12:09:19.817Z", - "updated": "2018-08-30T12:09:19.817Z", - "project": 1, - "snapshot": 1, - "attribute": 71, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.817Z", + "updated": "2018-08-30T12:09:19.817Z", + "project": 1, + "snapshot": 1, + "attribute": 71, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 153, "fields": { - "created": "2018-08-30T12:09:19.818Z", - "updated": "2018-08-30T12:09:19.818Z", - "project": 1, - "snapshot": 1, - "attribute": 74, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.818Z", + "updated": "2018-08-30T12:09:19.818Z", + "project": 1, + "snapshot": 1, + "attribute": 74, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 154, "fields": { - "created": "2018-08-30T12:09:19.819Z", - "updated": "2018-08-30T12:09:19.819Z", - "project": 1, - "snapshot": 1, - "attribute": 74, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.819Z", + "updated": "2018-08-30T12:09:19.819Z", + "project": 1, + "snapshot": 1, + "attribute": 74, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 155, "fields": { - "created": "2018-08-30T12:09:19.819Z", - "updated": "2018-08-30T12:09:19.819Z", - "project": 1, - "snapshot": 1, - "attribute": 75, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.819Z", + "updated": "2018-08-30T12:09:19.819Z", + "project": 1, + "snapshot": 1, + "attribute": 75, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 156, "fields": { - "created": "2018-08-30T12:09:19.820Z", - "updated": "2018-08-30T12:09:19.820Z", - "project": 1, - "snapshot": 1, - "attribute": 75, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.820Z", + "updated": "2018-08-30T12:09:19.820Z", + "project": 1, + "snapshot": 1, + "attribute": 75, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 157, "fields": { - "created": "2018-08-30T12:09:19.820Z", - "updated": "2018-08-30T12:09:19.820Z", - "project": 1, - "snapshot": 1, - "attribute": 76, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.820Z", + "updated": "2018-08-30T12:09:19.820Z", + "project": 1, + "snapshot": 1, + "attribute": 76, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 158, "fields": { - "created": "2018-08-30T12:09:19.821Z", - "updated": "2018-08-30T12:09:19.821Z", - "project": 1, - "snapshot": 1, - "attribute": 76, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.821Z", + "updated": "2018-08-30T12:09:19.821Z", + "project": 1, + "snapshot": 1, + "attribute": 76, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 159, "fields": { - "created": "2018-08-30T12:09:19.821Z", - "updated": "2018-08-30T12:09:19.821Z", - "project": 1, - "snapshot": 1, - "attribute": 49, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.821Z", + "updated": "2018-08-30T12:09:19.821Z", + "project": 1, + "snapshot": 1, + "attribute": 49, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 160, "fields": { - "created": "2018-08-30T12:09:19.821Z", - "updated": "2018-08-30T12:09:19.821Z", - "project": 1, - "snapshot": 1, - "attribute": 49, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.821Z", + "updated": "2018-08-30T12:09:19.821Z", + "project": 1, + "snapshot": 1, + "attribute": 49, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 161, "fields": { - "created": "2018-08-30T12:09:19.822Z", - "updated": "2018-08-30T12:09:19.822Z", - "project": 1, - "snapshot": 1, - "attribute": 50, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.822Z", + "updated": "2018-08-30T12:09:19.822Z", + "project": 1, + "snapshot": 1, + "attribute": 50, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 162, "fields": { - "created": "2018-08-30T12:09:19.822Z", - "updated": "2018-08-30T12:09:19.822Z", - "project": 1, - "snapshot": 1, - "attribute": 50, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-08-30T12:09:19.822Z", + "updated": "2018-08-30T12:09:19.822Z", + "project": 1, + "snapshot": 1, + "attribute": 50, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 238, "fields": { - "created": "2020-11-12T13:16:06.602Z", - "updated": "2020-11-17T14:47:31.645Z", - "project": 1, - "snapshot": null, - "attribute": 96, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "projects/1/values/238/rdmo-logo.svg", - "value_type": "file", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2020-11-12T13:16:06.602Z", + "updated": "2020-11-17T14:47:31.645Z", + "project": 1, + "snapshot": null, + "attribute": 96, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "projects/1/values/238/rdmo-logo.svg", + "value_type": "file", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 240, "fields": { - "created": "2020-11-12T13:22:54.747Z", - "updated": "2020-11-17T14:47:25.398Z", - "project": 1, - "snapshot": null, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": null, - "file": "projects/1/values/240/test.txt", - "value_type": "file", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2020-11-12T13:22:54.747Z", + "updated": "2020-11-17T14:47:25.398Z", + "project": 1, + "snapshot": null, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": null, + "file": "projects/1/values/240/test.txt", + "value_type": "file", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 241, "fields": { - "created": "2020-11-17T14:47:25.399Z", - "updated": "2020-11-17T14:47:25.430Z", - "project": 1, - "snapshot": null, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": null, - "file": "projects/1/values/241/favicon.png", - "value_type": "file", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2020-11-17T14:47:25.399Z", + "updated": "2020-11-17T14:47:25.430Z", + "project": 1, + "snapshot": null, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": null, + "file": "projects/1/values/241/favicon.png", + "value_type": "file", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 242, "fields": { - "created": "2021-01-07T12:45:23.066Z", - "updated": "2021-01-07T12:45:23.066Z", - "project": 2, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:45:23.066Z", + "updated": "2021-01-07T12:45:23.066Z", + "project": 2, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 243, "fields": { - "created": "2021-01-07T12:45:23.066Z", - "updated": "2021-01-07T13:00:55.211Z", - "project": 2, - "snapshot": 3, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:45:23.066Z", + "updated": "2021-01-07T13:00:55.211Z", + "project": 2, + "snapshot": 3, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 244, "fields": { - "created": "2021-01-07T12:45:41.219Z", - "updated": "2021-01-07T13:00:59.681Z", - "project": 3, - "snapshot": 4, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:45:41.219Z", + "updated": "2021-01-07T13:00:59.681Z", + "project": 3, + "snapshot": 4, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 245, "fields": { - "created": "2021-01-07T12:45:55.807Z", - "updated": "2021-01-07T13:01:03.909Z", - "project": 4, - "snapshot": 5, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:45:55.807Z", + "updated": "2021-01-07T13:01:03.909Z", + "project": 4, + "snapshot": 5, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 246, "fields": { - "created": "2021-01-07T12:46:08.904Z", - "updated": "2021-01-07T13:01:08.386Z", - "project": 5, - "snapshot": 6, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:46:08.904Z", + "updated": "2021-01-07T13:01:08.386Z", + "project": 5, + "snapshot": 6, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 247, "fields": { - "created": "2021-01-07T12:45:41.219Z", - "updated": "2021-01-07T15:39:24.164Z", - "project": 3, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:45:41.219Z", + "updated": "2021-01-07T15:39:24.164Z", + "project": 3, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 248, "fields": { - "created": "2021-01-07T12:45:55.807Z", - "updated": "2021-01-07T15:39:39.388Z", - "project": 4, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:45:55.807Z", + "updated": "2021-01-07T15:39:39.388Z", + "project": 4, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 249, "fields": { - "created": "2021-01-07T12:46:08.904Z", - "updated": "2021-01-07T15:39:43.132Z", - "project": 5, - "snapshot": null, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-01-07T12:46:08.904Z", + "updated": "2021-01-07T15:39:43.132Z", + "project": 5, + "snapshot": null, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 328, "fields": { - "created": "2018-07-23T11:30:48.237Z", - "updated": "2021-02-21T12:32:42.707Z", - "project": 1, - "snapshot": 7, - "attribute": 82, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:30:48.237Z", + "updated": "2021-02-21T12:32:42.707Z", + "project": 1, + "snapshot": 7, + "attribute": 82, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 329, "fields": { - "created": "2018-07-23T11:29:20.935Z", - "updated": "2021-02-21T12:32:42.715Z", - "project": 1, - "snapshot": 7, - "attribute": 81, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "test", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:29:20.935Z", + "updated": "2021-02-21T12:32:42.715Z", + "project": 1, + "snapshot": 7, + "attribute": 81, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "test", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 330, "fields": { - "created": "2017-04-25T14:54:01.087Z", - "updated": "2021-02-21T12:32:42.721Z", - "project": 1, - "snapshot": 7, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:01.087Z", + "updated": "2021-02-21T12:32:42.721Z", + "project": 1, + "snapshot": 7, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 331, "fields": { - "created": "2017-04-25T14:54:01.077Z", - "updated": "2021-02-21T12:32:42.728Z", - "project": 1, - "snapshot": 7, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:01.077Z", + "updated": "2021-02-21T12:32:42.728Z", + "project": 1, + "snapshot": 7, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 332, "fields": { - "created": "2017-04-25T14:54:01.088Z", - "updated": "2021-02-21T12:32:42.735Z", - "project": 1, - "snapshot": 7, - "attribute": 13, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:01.088Z", + "updated": "2021-02-21T12:32:42.735Z", + "project": 1, + "snapshot": 7, + "attribute": 13, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 333, "fields": { - "created": "2017-04-25T14:55:11.016Z", - "updated": "2021-02-21T12:32:42.742Z", - "project": 1, - "snapshot": 7, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:11.016Z", + "updated": "2021-02-21T12:32:42.742Z", + "project": 1, + "snapshot": 7, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 334, "fields": { - "created": "2018-07-20T15:08:22.495Z", - "updated": "2021-02-21T12:32:42.749Z", - "project": 1, - "snapshot": 7, - "attribute": 14, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:22.495Z", + "updated": "2021-02-21T12:32:42.749Z", + "project": 1, + "snapshot": 7, + "attribute": 14, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 335, "fields": { - "created": "2017-04-25T14:55:06.073Z", - "updated": "2021-02-21T12:32:42.756Z", - "project": 1, - "snapshot": 7, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2017-04-01T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:06.073Z", + "updated": "2021-02-21T12:32:42.756Z", + "project": 1, + "snapshot": 7, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2017-04-01T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 336, "fields": { - "created": "2017-04-25T14:55:06.062Z", - "updated": "2021-02-21T12:32:42.761Z", - "project": 1, - "snapshot": 7, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2017-04-02T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:06.062Z", + "updated": "2021-02-21T12:32:42.761Z", + "project": 1, + "snapshot": 7, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2017-04-02T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 337, "fields": { - "created": "2017-04-25T14:55:06.075Z", - "updated": "2021-02-21T12:32:42.766Z", - "project": 1, - "snapshot": 7, - "attribute": 16, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "2017-04-03T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:06.075Z", + "updated": "2021-02-21T12:32:42.766Z", + "project": 1, + "snapshot": 7, + "attribute": 16, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "2017-04-03T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 338, "fields": { - "created": "2020-11-12T13:22:54.747Z", - "updated": "2021-02-21T12:32:42.780Z", - "project": 1, - "snapshot": 7, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": null, - "file": "projects/1/snapshots/7/values/338/test.txt", - "value_type": "file", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2020-11-12T13:22:54.747Z", + "updated": "2021-02-21T12:32:42.780Z", + "project": 1, + "snapshot": 7, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": null, + "file": "projects/1/snapshots/7/values/338/test.txt", + "value_type": "file", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 339, "fields": { - "created": "2020-11-17T14:47:25.399Z", - "updated": "2021-02-21T12:32:42.792Z", - "project": 1, - "snapshot": 7, - "attribute": 98, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": null, - "file": "projects/1/snapshots/7/values/339/favicon.png", - "value_type": "file", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2020-11-17T14:47:25.399Z", + "updated": "2021-02-21T12:32:42.792Z", + "project": 1, + "snapshot": 7, + "attribute": 98, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": null, + "file": "projects/1/snapshots/7/values/339/favicon.png", + "value_type": "file", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 340, "fields": { - "created": "2017-04-25T14:54:41.844Z", - "updated": "2021-02-21T12:32:42.798Z", - "project": 1, - "snapshot": 7, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:41.844Z", + "updated": "2021-02-21T12:32:42.798Z", + "project": 1, + "snapshot": 7, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 341, "fields": { - "created": "2017-04-25T14:54:41.842Z", - "updated": "2021-02-21T12:32:42.805Z", - "project": 1, - "snapshot": 7, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:41.842Z", + "updated": "2021-02-21T12:32:42.805Z", + "project": 1, + "snapshot": 7, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 342, "fields": { - "created": "2017-04-25T14:54:41.838Z", - "updated": "2021-02-21T12:32:42.810Z", - "project": 1, - "snapshot": 7, - "attribute": 15, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:41.838Z", + "updated": "2021-02-21T12:32:42.810Z", + "project": 1, + "snapshot": 7, + "attribute": 15, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 343, "fields": { - "created": "2017-04-25T14:54:57.682Z", - "updated": "2021-02-21T12:32:42.816Z", - "project": 1, - "snapshot": 7, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:57.682Z", + "updated": "2021-02-21T12:32:42.816Z", + "project": 1, + "snapshot": 7, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 344, "fields": { - "created": "2017-04-25T14:54:57.674Z", - "updated": "2021-02-21T12:32:42.823Z", - "project": 1, - "snapshot": 7, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "50", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:57.674Z", + "updated": "2021-02-21T12:32:42.823Z", + "project": 1, + "snapshot": 7, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "50", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 345, "fields": { - "created": "2017-04-25T14:54:57.685Z", - "updated": "2021-02-21T12:32:42.836Z", - "project": 1, - "snapshot": 7, - "attribute": 19, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "100", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:57.685Z", + "updated": "2021-02-21T12:32:42.836Z", + "project": 1, + "snapshot": 7, + "attribute": 19, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "100", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 346, "fields": { - "created": "2017-04-25T14:54:48.751Z", - "updated": "2021-02-21T12:32:42.846Z", - "project": 1, - "snapshot": 7, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:48.751Z", + "updated": "2021-02-21T12:32:42.846Z", + "project": 1, + "snapshot": 7, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 347, "fields": { - "created": "2017-04-25T14:54:48.745Z", - "updated": "2021-02-21T12:32:42.863Z", - "project": 1, - "snapshot": 7, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:48.745Z", + "updated": "2021-02-21T12:32:42.863Z", + "project": 1, + "snapshot": 7, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 348, "fields": { - "created": "2017-04-25T14:54:48.750Z", - "updated": "2021-02-21T12:32:42.874Z", - "project": 1, - "snapshot": 7, - "attribute": 20, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:54:48.750Z", + "updated": "2021-02-21T12:32:42.874Z", + "project": 1, + "snapshot": 7, + "attribute": 20, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 349, "fields": { - "created": "2017-04-25T14:53:40.735Z", - "updated": "2021-02-21T12:32:42.886Z", - "project": 1, - "snapshot": 7, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:40.735Z", + "updated": "2021-02-21T12:32:42.886Z", + "project": 1, + "snapshot": 7, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 350, "fields": { - "created": "2017-04-25T14:53:40.744Z", - "updated": "2021-02-21T12:32:42.898Z", - "project": 1, - "snapshot": 7, - "attribute": 21, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:40.744Z", + "updated": "2021-02-21T12:32:42.898Z", + "project": 1, + "snapshot": 7, + "attribute": 21, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 351, "fields": { - "created": "2017-04-25T14:53:45.659Z", - "updated": "2021-02-21T12:32:42.907Z", - "project": 1, - "snapshot": 7, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:45.659Z", + "updated": "2021-02-21T12:32:42.907Z", + "project": 1, + "snapshot": 7, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 352, "fields": { - "created": "2017-04-25T14:53:56.532Z", - "updated": "2021-02-21T12:32:42.916Z", - "project": 1, - "snapshot": 7, - "attribute": 22, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:56.532Z", + "updated": "2021-02-21T12:32:42.916Z", + "project": 1, + "snapshot": 7, + "attribute": 22, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 353, "fields": { - "created": "2017-04-25T14:53:05.503Z", - "updated": "2021-02-21T12:32:42.927Z", - "project": 1, - "snapshot": 7, - "attribute": 8, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:05.503Z", + "updated": "2021-02-21T12:32:42.927Z", + "project": 1, + "snapshot": 7, + "attribute": 8, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 354, "fields": { - "created": "2017-04-25T14:53:30.134Z", - "updated": "2021-02-21T12:32:42.938Z", - "project": 1, - "snapshot": 7, - "attribute": 9, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-01T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:30.134Z", + "updated": "2021-02-21T12:32:42.938Z", + "project": 1, + "snapshot": 7, + "attribute": 9, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-01T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 355, "fields": { - "created": "2020-11-12T13:16:06.602Z", - "updated": "2021-02-21T12:32:42.959Z", - "project": 1, - "snapshot": 7, - "attribute": 96, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "projects/1/snapshots/7/values/355/rdmo-logo.svg", - "value_type": "file", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2020-11-12T13:16:06.602Z", + "updated": "2021-02-21T12:32:42.959Z", + "project": 1, + "snapshot": 7, + "attribute": 96, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "projects/1/snapshots/7/values/355/rdmo-logo.svg", + "value_type": "file", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 356, "fields": { - "created": "2017-04-25T14:53:12.956Z", - "updated": "2021-02-21T12:32:42.969Z", - "project": 1, - "snapshot": 7, - "attribute": 11, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum", - "option": 7, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:12.956Z", + "updated": "2021-02-21T12:32:42.969Z", + "project": 1, + "snapshot": 7, + "attribute": 11, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum", + "option": 7, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 357, "fields": { - "created": "2017-04-25T14:53:21.131Z", - "updated": "2021-02-21T12:32:42.980Z", - "project": 1, - "snapshot": 7, - "attribute": 7, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "37", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:21.131Z", + "updated": "2021-02-21T12:32:42.980Z", + "project": 1, + "snapshot": 7, + "attribute": 7, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "37", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 358, "fields": { - "created": "2017-04-25T14:53:15.855Z", - "updated": "2021-02-21T12:32:42.990Z", - "project": 1, - "snapshot": 7, - "attribute": 12, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:15.855Z", + "updated": "2021-02-21T12:32:42.990Z", + "project": 1, + "snapshot": 7, + "attribute": 12, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 359, "fields": { - "created": "2017-04-25T14:52:59.412Z", - "updated": "2021-02-21T12:32:43.001Z", - "project": 1, - "snapshot": 7, - "attribute": 3, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:52:59.412Z", + "updated": "2021-02-21T12:32:43.001Z", + "project": 1, + "snapshot": 7, + "attribute": 3, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 360, "fields": { - "created": "2017-04-25T14:53:03.399Z", - "updated": "2021-02-21T12:32:43.012Z", - "project": 1, - "snapshot": 7, - "attribute": 4, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:53:03.399Z", + "updated": "2021-02-21T12:32:43.012Z", + "project": 1, + "snapshot": 7, + "attribute": 4, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 361, "fields": { - "created": "2018-07-20T15:27:00.962Z", - "updated": "2021-02-21T12:32:43.023Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.962Z", + "updated": "2021-02-21T12:32:43.023Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 362, "fields": { - "created": "2018-07-20T15:27:00.981Z", - "updated": "2021-02-21T12:32:43.034Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.981Z", + "updated": "2021-02-21T12:32:43.034Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 363, "fields": { - "created": "2018-07-20T15:27:00.980Z", - "updated": "2021-02-21T12:32:43.045Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.980Z", + "updated": "2021-02-21T12:32:43.045Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 364, "fields": { - "created": "2018-07-20T15:27:01.189Z", - "updated": "2021-02-21T12:32:43.055Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.189Z", + "updated": "2021-02-21T12:32:43.055Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 365, "fields": { - "created": "2018-07-20T15:27:01.190Z", - "updated": "2021-02-21T12:32:43.065Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.190Z", + "updated": "2021-02-21T12:32:43.065Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 366, "fields": { - "created": "2018-07-20T15:27:01.191Z", - "updated": "2021-02-21T12:32:43.076Z", - "project": 1, - "snapshot": 7, - "attribute": 62, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.191Z", + "updated": "2021-02-21T12:32:43.076Z", + "project": 1, + "snapshot": 7, + "attribute": 62, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 367, "fields": { - "created": "2018-07-20T15:27:01.133Z", - "updated": "2021-02-21T12:32:43.087Z", - "project": 1, - "snapshot": 7, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.133Z", + "updated": "2021-02-21T12:32:43.087Z", + "project": 1, + "snapshot": 7, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 368, "fields": { - "created": "2018-07-20T15:27:01.151Z", - "updated": "2021-02-21T12:32:43.096Z", - "project": 1, - "snapshot": 7, - "attribute": 78, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.151Z", + "updated": "2021-02-21T12:32:43.096Z", + "project": 1, + "snapshot": 7, + "attribute": 78, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 369, "fields": { - "created": "2018-07-20T15:27:01.282Z", - "updated": "2021-02-21T12:32:43.103Z", - "project": 1, - "snapshot": 7, - "attribute": 78, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.282Z", + "updated": "2021-02-21T12:32:43.103Z", + "project": 1, + "snapshot": 7, + "attribute": 78, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 370, "fields": { - "created": "2018-07-20T15:27:01.110Z", - "updated": "2021-02-21T12:32:43.110Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.110Z", + "updated": "2021-02-21T12:32:43.110Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 371, "fields": { - "created": "2018-07-20T15:27:01.126Z", - "updated": "2021-02-21T12:32:43.116Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.126Z", + "updated": "2021-02-21T12:32:43.116Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 372, "fields": { - "created": "2018-07-20T15:27:01.265Z", - "updated": "2021-02-21T12:32:43.122Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-10-07T00:00:00+02:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.265Z", + "updated": "2021-02-21T12:32:43.122Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-10-07T00:00:00+02:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 373, "fields": { - "created": "2018-07-20T15:27:01.277Z", - "updated": "2021-02-21T12:32:43.129Z", - "project": 1, - "snapshot": 7, - "attribute": 63, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "2018-11-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.277Z", + "updated": "2021-02-21T12:32:43.129Z", + "project": 1, + "snapshot": 7, + "attribute": 63, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "2018-11-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 374, "fields": { - "created": "2018-07-20T15:27:00.995Z", - "updated": "2021-02-21T12:32:43.134Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:00.995Z", + "updated": "2021-02-21T12:32:43.134Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 375, "fields": { - "created": "2018-07-20T15:27:01.061Z", - "updated": "2021-02-21T12:32:43.140Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.061Z", + "updated": "2021-02-21T12:32:43.140Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 376, "fields": { - "created": "2018-07-20T15:27:01.072Z", - "updated": "2021-02-21T12:32:43.146Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 0, - "collection_index": 2, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.072Z", + "updated": "2021-02-21T12:32:43.146Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 0, + "collection_index": 2, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 377, "fields": { - "created": "2018-07-20T15:27:01.213Z", - "updated": "2021-02-21T12:32:43.152Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 6, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.213Z", + "updated": "2021-02-21T12:32:43.152Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 6, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 378, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2021-02-21T12:32:43.159Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 1, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.233Z", + "updated": "2021-02-21T12:32:43.159Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 1, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 379, "fields": { - "created": "2018-07-20T15:27:01.233Z", - "updated": "2021-02-21T12:32:43.165Z", - "project": 1, - "snapshot": 7, - "attribute": 66, - "set_prefix": "", - "set_index": 1, - "collection_index": 2, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.233Z", + "updated": "2021-02-21T12:32:43.165Z", + "project": 1, + "snapshot": 7, + "attribute": 66, + "set_prefix": "", + "set_index": 1, + "collection_index": 2, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 380, "fields": { - "created": "2018-07-20T15:27:01.080Z", - "updated": "2021-02-21T12:32:43.172Z", - "project": 1, - "snapshot": 7, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "16", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.080Z", + "updated": "2021-02-21T12:32:43.172Z", + "project": 1, + "snapshot": 7, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "16", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 381, "fields": { - "created": "2018-07-20T15:27:01.093Z", - "updated": "2021-02-21T12:32:43.177Z", - "project": 1, - "snapshot": 7, - "attribute": 67, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "31", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.093Z", + "updated": "2021-02-21T12:32:43.177Z", + "project": 1, + "snapshot": 7, + "attribute": 67, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "31", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 382, "fields": { - "created": "2018-07-20T15:27:01.256Z", - "updated": "2021-02-21T12:32:43.183Z", - "project": 1, - "snapshot": 7, - "attribute": 67, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "86", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.256Z", + "updated": "2021-02-21T12:32:43.183Z", + "project": 1, + "snapshot": 7, + "attribute": 67, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "86", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 383, "fields": { - "created": "2018-07-20T15:27:01.090Z", - "updated": "2021-02-21T12:32:43.190Z", - "project": 1, - "snapshot": 7, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.090Z", + "updated": "2021-02-21T12:32:43.190Z", + "project": 1, + "snapshot": 7, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 384, "fields": { - "created": "2018-07-20T15:27:01.087Z", - "updated": "2021-02-21T12:32:43.195Z", - "project": 1, - "snapshot": 7, - "attribute": 68, - "set_prefix": "", - "set_index": 0, - "collection_index": 1, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.087Z", + "updated": "2021-02-21T12:32:43.195Z", + "project": 1, + "snapshot": 7, + "attribute": 68, + "set_prefix": "", + "set_index": 0, + "collection_index": 1, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 385, "fields": { - "created": "2018-07-20T15:27:01.247Z", - "updated": "2021-02-21T12:32:43.200Z", - "project": 1, - "snapshot": 7, - "attribute": 68, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:27:01.247Z", + "updated": "2021-02-21T12:32:43.200Z", + "project": 1, + "snapshot": 7, + "attribute": 68, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 386, "fields": { - "created": "2017-04-25T14:55:25.443Z", - "updated": "2021-02-21T12:32:43.207Z", - "project": 1, - "snapshot": 7, - "attribute": 47, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:25.443Z", + "updated": "2021-02-21T12:32:43.207Z", + "project": 1, + "snapshot": 7, + "attribute": 47, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 387, "fields": { - "created": "2017-04-25T14:55:30.124Z", - "updated": "2021-02-21T12:32:43.214Z", - "project": 1, - "snapshot": 7, - "attribute": 47, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:30.124Z", + "updated": "2021-02-21T12:32:43.214Z", + "project": 1, + "snapshot": 7, + "attribute": 47, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 388, "fields": { - "created": "2017-04-25T14:55:25.449Z", - "updated": "2021-02-21T12:32:43.220Z", - "project": 1, - "snapshot": 7, - "attribute": 48, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:25.449Z", + "updated": "2021-02-21T12:32:43.220Z", + "project": 1, + "snapshot": 7, + "attribute": 48, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 389, "fields": { - "created": "2017-04-25T14:55:30.120Z", - "updated": "2021-02-21T12:32:43.226Z", - "project": 1, - "snapshot": 7, - "attribute": 48, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:30.120Z", + "updated": "2021-02-21T12:32:43.226Z", + "project": 1, + "snapshot": 7, + "attribute": 48, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 390, "fields": { - "created": "2018-07-23T11:10:30.841Z", - "updated": "2021-02-21T12:32:43.233Z", - "project": 1, - "snapshot": 7, - "attribute": 79, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "First", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:10:30.841Z", + "updated": "2021-02-21T12:32:43.233Z", + "project": 1, + "snapshot": 7, + "attribute": 79, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "First", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 391, "fields": { - "created": "2018-07-23T11:10:33.797Z", - "updated": "2021-02-21T12:32:43.239Z", - "project": 1, - "snapshot": 7, - "attribute": 79, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Second", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-23T11:10:33.797Z", + "updated": "2021-02-21T12:32:43.239Z", + "project": 1, + "snapshot": 7, + "attribute": 79, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Second", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 392, "fields": { - "created": "2018-07-20T15:09:23.797Z", - "updated": "2021-02-21T12:32:43.246Z", - "project": 1, - "snapshot": 7, - "attribute": 70, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.797Z", + "updated": "2021-02-21T12:32:43.246Z", + "project": 1, + "snapshot": 7, + "attribute": 70, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 393, "fields": { - "created": "2018-07-20T15:08:38.982Z", - "updated": "2021-02-21T12:32:43.252Z", - "project": 1, - "snapshot": 7, - "attribute": 70, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "0", - "option": null, - "file": "", - "value_type": "boolean", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.982Z", + "updated": "2021-02-21T12:32:43.252Z", + "project": 1, + "snapshot": 7, + "attribute": 70, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "0", + "option": null, + "file": "", + "value_type": "boolean", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 394, "fields": { - "created": "2018-07-20T15:09:23.833Z", - "updated": "2021-02-21T12:32:43.258Z", - "project": 1, - "snapshot": 7, - "attribute": 71, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "2018-01-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.833Z", + "updated": "2021-02-21T12:32:43.258Z", + "project": 1, + "snapshot": 7, + "attribute": 71, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "2018-01-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 395, "fields": { - "created": "2018-07-20T15:08:39.010Z", - "updated": "2021-02-21T12:32:43.265Z", - "project": 1, - "snapshot": 7, - "attribute": 71, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2018-02-07T00:00:00+01:00", - "option": null, - "file": "", - "value_type": "datetime", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:39.010Z", + "updated": "2021-02-21T12:32:43.265Z", + "project": 1, + "snapshot": 7, + "attribute": 71, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2018-02-07T00:00:00+01:00", + "option": null, + "file": "", + "value_type": "datetime", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 396, "fields": { - "created": "2018-07-20T15:09:23.804Z", - "updated": "2021-02-21T12:32:43.270Z", - "project": 1, - "snapshot": 7, - "attribute": 74, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 4, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.804Z", + "updated": "2021-02-21T12:32:43.270Z", + "project": 1, + "snapshot": 7, + "attribute": 74, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 4, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 397, "fields": { - "created": "2018-07-20T15:08:38.976Z", - "updated": "2021-02-21T12:32:43.276Z", - "project": 1, - "snapshot": 7, - "attribute": 74, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 5, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.976Z", + "updated": "2021-02-21T12:32:43.276Z", + "project": 1, + "snapshot": 7, + "attribute": 74, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 5, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 398, "fields": { - "created": "2018-07-20T15:09:23.807Z", - "updated": "2021-02-21T12:32:43.283Z", - "project": 1, - "snapshot": 7, - "attribute": 75, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "1", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.807Z", + "updated": "2021-02-21T12:32:43.283Z", + "project": 1, + "snapshot": 7, + "attribute": 75, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "1", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 399, "fields": { - "created": "2018-07-20T15:08:38.997Z", - "updated": "2021-02-21T12:32:43.289Z", - "project": 1, - "snapshot": 7, - "attribute": 75, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "2", - "option": null, - "file": "", - "value_type": "float", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.997Z", + "updated": "2021-02-21T12:32:43.289Z", + "project": 1, + "snapshot": 7, + "attribute": 75, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "2", + "option": null, + "file": "", + "value_type": "float", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 400, "fields": { - "created": "2018-07-20T15:09:23.813Z", - "updated": "2021-02-21T12:32:43.295Z", - "project": 1, - "snapshot": 7, - "attribute": 76, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:09:23.813Z", + "updated": "2021-02-21T12:32:43.295Z", + "project": 1, + "snapshot": 7, + "attribute": 76, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 401, "fields": { - "created": "2018-07-20T15:08:38.992Z", - "updated": "2021-02-21T12:32:43.301Z", - "project": 1, - "snapshot": 7, - "attribute": 76, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "option", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.992Z", + "updated": "2021-02-21T12:32:43.301Z", + "project": 1, + "snapshot": 7, + "attribute": 76, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "option", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 402, "fields": { - "created": "2017-04-25T14:55:19.847Z", - "updated": "2021-02-21T12:32:43.306Z", - "project": 1, - "snapshot": 7, - "attribute": 49, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:19.847Z", + "updated": "2021-02-21T12:32:43.306Z", + "project": 1, + "snapshot": 7, + "attribute": 49, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 403, "fields": { - "created": "2018-07-20T15:08:38.974Z", - "updated": "2021-02-21T12:32:43.312Z", - "project": 1, - "snapshot": 7, - "attribute": 49, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.974Z", + "updated": "2021-02-21T12:32:43.312Z", + "project": 1, + "snapshot": 7, + "attribute": 49, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 404, "fields": { - "created": "2017-04-25T14:55:19.853Z", - "updated": "2021-02-21T12:32:43.319Z", - "project": 1, - "snapshot": 7, - "attribute": 50, - "set_prefix": "", - "set_index": 0, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2017-04-25T14:55:19.853Z", + "updated": "2021-02-21T12:32:43.319Z", + "project": 1, + "snapshot": 7, + "attribute": 50, + "set_prefix": "", + "set_index": 0, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 405, "fields": { - "created": "2018-07-20T15:08:38.975Z", - "updated": "2021-02-21T12:32:43.325Z", - "project": 1, - "snapshot": 7, - "attribute": 50, - "set_prefix": "", - "set_index": 1, - "collection_index": 0, - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2018-07-20T15:08:38.975Z", + "updated": "2021-02-21T12:32:43.325Z", + "project": 1, + "snapshot": 7, + "attribute": 50, + "set_prefix": "", + "set_index": 1, + "collection_index": 0, + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor sit amet.", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 436, "fields": { - "created": "2021-06-02T15:15:09.397Z", - "updated": "2021-06-02T15:45:14.646Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "0", - "set_index": 1, - "collection_index": 0, - "text": "b1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:09.397Z", + "updated": "2021-06-02T15:45:14.646Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "0", + "set_index": 1, + "collection_index": 0, + "text": "b1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 437, "fields": { - "created": "2021-06-02T15:15:09.418Z", - "updated": "2021-06-02T15:45:13.655Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "0", - "set_index": 0, - "collection_index": 0, - "text": "a0", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:09.418Z", + "updated": "2021-06-02T15:45:13.655Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "0", + "set_index": 0, + "collection_index": 0, + "text": "a0", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 438, "fields": { - "created": "2021-06-02T15:15:09.444Z", - "updated": "2021-06-02T15:45:15.729Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 0, - "collection_index": 0, - "text": "c01", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:09.444Z", + "updated": "2021-06-02T15:45:15.729Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 0, + "collection_index": 0, + "text": "c01", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 439, "fields": { - "created": "2021-06-02T15:15:09.448Z", - "updated": "2021-06-02T15:45:13.741Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "0", - "set_index": 1, - "collection_index": 0, - "text": "a1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:09.448Z", + "updated": "2021-06-02T15:45:13.741Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "0", + "set_index": 1, + "collection_index": 0, + "text": "a1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 440, "fields": { - "created": "2021-06-02T15:15:09.467Z", - "updated": "2021-06-02T15:45:16.312Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 0, - "collection_index": 1, - "text": "c02", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:09.467Z", + "updated": "2021-06-02T15:45:16.312Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 0, + "collection_index": 1, + "text": "c02", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 441, "fields": { - "created": "2021-06-02T15:15:09.545Z", - "updated": "2021-06-02T15:45:14.681Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "0", - "set_index": 0, - "collection_index": 0, - "text": "b1", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:09.545Z", + "updated": "2021-06-02T15:45:14.681Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "0", + "set_index": 0, + "collection_index": 0, + "text": "b1", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 442, "fields": { - "created": "2021-06-02T15:15:10.099Z", - "updated": "2021-06-02T15:45:15.919Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 1, - "collection_index": 1, - "text": "c11", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:10.099Z", + "updated": "2021-06-02T15:45:15.919Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 1, + "collection_index": 1, + "text": "c11", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 443, "fields": { - "created": "2021-06-02T15:15:10.107Z", - "updated": "2021-06-02T15:45:15.784Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "0", - "set_index": 1, - "collection_index": 0, - "text": "c10", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:10.107Z", + "updated": "2021-06-02T15:45:15.784Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "0", + "set_index": 1, + "collection_index": 0, + "text": "c10", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 444, "fields": { - "created": "2021-06-02T15:15:35.543Z", - "updated": "2021-06-02T15:45:13.636Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "1", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:35.543Z", + "updated": "2021-06-02T15:45:13.636Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "1", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 445, "fields": { - "created": "2021-06-02T15:15:35.554Z", - "updated": "2021-06-02T15:45:14.545Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "1", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:35.554Z", + "updated": "2021-06-02T15:45:14.545Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "1", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 446, "fields": { - "created": "2021-06-02T15:15:35.598Z", - "updated": "2021-06-02T15:45:13.968Z", - "project": 1, - "snapshot": null, - "attribute": 112, - "set_prefix": "1|2", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": 1, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:35.598Z", + "updated": "2021-06-02T15:45:13.968Z", + "project": 1, + "snapshot": null, + "attribute": 112, + "set_prefix": "1|2", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": 1, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 447, "fields": { - "created": "2021-06-02T15:15:35.637Z", - "updated": "2021-06-02T15:45:14.698Z", - "project": 1, - "snapshot": null, - "attribute": 108, - "set_prefix": "1", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:35.637Z", + "updated": "2021-06-02T15:45:14.698Z", + "project": 1, + "snapshot": null, + "attribute": 108, + "set_prefix": "1", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 448, "fields": { - "created": "2021-06-02T15:15:36.397Z", - "updated": "2021-06-02T15:45:14.784Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "1", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:36.397Z", + "updated": "2021-06-02T15:45:14.784Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "1", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 449, "fields": { - "created": "2021-06-02T15:15:36.572Z", - "updated": "2021-06-02T15:45:14.892Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "1", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:36.572Z", + "updated": "2021-06-02T15:45:14.892Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "1", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 450, "fields": { - "created": "2021-06-02T15:15:36.660Z", - "updated": "2021-06-02T15:45:15.033Z", - "project": 1, - "snapshot": null, - "attribute": 109, - "set_prefix": "1", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:36.660Z", + "updated": "2021-06-02T15:45:15.033Z", + "project": 1, + "snapshot": null, + "attribute": 109, + "set_prefix": "1", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 451, "fields": { - "created": "2021-06-02T15:15:37.357Z", - "updated": "2021-06-02T15:45:16.041Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "1", - "set_index": 0, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:37.357Z", + "updated": "2021-06-02T15:45:16.041Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "1", + "set_index": 0, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 452, "fields": { - "created": "2021-06-02T15:15:37.385Z", - "updated": "2021-06-02T15:45:16.034Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "1", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:37.385Z", + "updated": "2021-06-02T15:45:16.034Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "1", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 453, "fields": { - "created": "2021-06-02T15:15:38.070Z", - "updated": "2021-06-02T15:45:16.570Z", - "project": 1, - "snapshot": null, - "attribute": 110, - "set_prefix": "1", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": null, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:15:38.070Z", + "updated": "2021-06-02T15:45:16.570Z", + "project": 1, + "snapshot": null, + "attribute": 110, + "set_prefix": "1", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": null, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 454, "fields": { - "created": "2021-06-02T15:45:08.272Z", - "updated": "2021-06-02T15:45:13.789Z", - "project": 1, - "snapshot": null, - "attribute": 112, - "set_prefix": "1|2", - "set_index": 1, - "collection_index": 0, - "text": "", - "option": 2, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -}, -{ + "created": "2021-06-02T15:45:08.272Z", + "updated": "2021-06-02T15:45:13.789Z", + "project": 1, + "snapshot": null, + "attribute": 112, + "set_prefix": "1|2", + "set_index": 1, + "collection_index": 0, + "text": "", + "option": 2, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + }, + { "model": "projects.value", "pk": 455, "fields": { - "created": "2021-06-02T15:45:08.378Z", - "updated": "2021-06-02T15:45:13.729Z", - "project": 1, - "snapshot": null, - "attribute": 112, - "set_prefix": "1|2", - "set_index": 2, - "collection_index": 0, - "text": "", - "option": 3, - "file": "", - "value_type": "text", - "unit": "", - "external_id": "" - } -} -] + "created": "2021-06-02T15:45:08.378Z", + "updated": "2021-06-02T15:45:13.729Z", + "project": 1, + "snapshot": null, + "attribute": 112, + "set_prefix": "1|2", + "set_index": 2, + "collection_index": 0, + "text": "", + "option": 3, + "file": "", + "value_type": "text", + "unit": "", + "external_id": "" + } + } +] \ No newline at end of file diff --git a/testing/fixtures/views.json b/testing/fixtures/views.json index 735d50c0a6..4246f9e555 100644 --- a/testing/fixtures/views.json +++ b/testing/fixtures/views.json @@ -1,90 +1,90 @@ [ -{ + { "model": "views.view", "pk": 1, "fields": { - "uri": "http://example.com/terms/views/view_a", - "uri_prefix": "http://example.com/terms", - "key": "view_a", - "comment": "", - "locked": false, - "template": "{% load view_tags %}\n\n

Individual

\n\n

Collection

\n\n
    \n {% render_value_list 'individual/collection/bool' %}\n
\n
    \n {% render_value_list 'individual/collection/checkbox' %}\n
\n
    \n {% render_value_list 'individual/collection/datetime' %}\n
\n
    \n {% render_value_list 'individual/collection/float' %}\n
\n
    \n {% render_value_list 'individual/collection/integer' %}\n
\n
    \n {% render_value_list 'individual/collection/radio' %}\n
\n
    \n {% render_value_list 'individual/collection/range' %}\n
\n
    \n {% render_value_list 'individual/collection/select' %}\n
\n
    \n {% render_value_list 'individual/collection/text' %}\n
\n
    \n {% render_value_list 'individual/collection/textarea' %}\n
\n
    \n {% render_value_list 'individual/collection/url' %}\n
\n
    \n {% render_value_list 'individual/collection/file' %}\n
\n\n

Individual

\n\n

Single

\n\n

\n {% render_value 'individual/single/bool' %}\n

\n

\n {% render_value 'individual/single/checkbox' %}\n

\n

\n {% render_value 'individual/single/datetime' %}\n

\n

\n {% render_value 'individual/single/float' %}\n

\n

\n {% render_value 'individual/single/integer' %}\n

\n

\n {% render_value 'individual/single/radio' %}\n

\n

\n {% render_value 'individual/single/range' %}\n

\n

\n {% render_value 'individual/single/select' %}\n

\n

\n {% render_value 'individual/single/text' %}\n

\n

\n {% render_value 'individual/single/textarea' %}\n

\n

\n {% render_value 'individual/single/url' %}\n

\n

\n {% render_value 'individual/single/file' %}\n

\n\n

Set

\n\n{% get_values 'set/id' index=0 as sets %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{{ set.value }}

\n\n
    \n {% render_value_list 'set/collection/bool' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/checkbox' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/datetime' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/float' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/integer' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/radio' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/range' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/select' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/text' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/textarea' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/url' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/file' set_index=set.set_index %}\n
\n\n{% endfor %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{% render_value 'set/id' set_index=set.set_index %}

\n\n

\n {% render_value 'set/single/bool' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/checkbox' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/datetime' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/float' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/integer' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/radio' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/range' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/select' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/text' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/textarea' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/url' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/file' set_index=set.set_index %}\n

\n\n{% endfor %}", - "title_lang1": "View A", - "title_lang2": "Ansicht A", - "title_lang3": "", - "title_lang4": "", - "title_lang5": "", - "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang3": "", - "help_lang4": "", - "help_lang5": "", - "available": true, - "catalogs": [ - 1 - ], - "sites": [ - 1 - ], - "groups": [] + "uri": "http://example.com/terms/views/view_a", + "uri_prefix": "http://example.com/terms", + "key": "view_a", + "comment": "", + "locked": false, + "template": "{% load view_tags %}\n\n

Individual

\n\n

Collection

\n\n
    \n {% render_value_list 'individual/collection/bool' %}\n
\n
    \n {% render_value_list 'individual/collection/checkbox' %}\n
\n
    \n {% render_value_list 'individual/collection/datetime' %}\n
\n
    \n {% render_value_list 'individual/collection/float' %}\n
\n
    \n {% render_value_list 'individual/collection/integer' %}\n
\n
    \n {% render_value_list 'individual/collection/radio' %}\n
\n
    \n {% render_value_list 'individual/collection/range' %}\n
\n
    \n {% render_value_list 'individual/collection/select' %}\n
\n
    \n {% render_value_list 'individual/collection/text' %}\n
\n
    \n {% render_value_list 'individual/collection/textarea' %}\n
\n
    \n {% render_value_list 'individual/collection/url' %}\n
\n
    \n {% render_value_list 'individual/collection/file' %}\n
\n\n

Individual

\n\n

Single

\n\n

\n {% render_value 'individual/single/bool' %}\n

\n

\n {% render_value 'individual/single/checkbox' %}\n

\n

\n {% render_value 'individual/single/datetime' %}\n

\n

\n {% render_value 'individual/single/float' %}\n

\n

\n {% render_value 'individual/single/integer' %}\n

\n

\n {% render_value 'individual/single/radio' %}\n

\n

\n {% render_value 'individual/single/range' %}\n

\n

\n {% render_value 'individual/single/select' %}\n

\n

\n {% render_value 'individual/single/text' %}\n

\n

\n {% render_value 'individual/single/textarea' %}\n

\n

\n {% render_value 'individual/single/url' %}\n

\n

\n {% render_value 'individual/single/file' %}\n

\n\n

Set

\n\n{% get_values 'set/id' index=0 as sets %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{{ set.value }}

\n\n
    \n {% render_value_list 'set/collection/bool' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/checkbox' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/datetime' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/float' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/integer' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/radio' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/range' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/select' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/text' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/textarea' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/url' set_index=set.set_index %}\n
\n
    \n {% render_value_list 'set/collection/file' set_index=set.set_index %}\n
\n\n{% endfor %}\n\n

Collection

\n\n{% for set in sets %}\n\n

{% render_value 'set/id' set_index=set.set_index %}

\n\n

\n {% render_value 'set/single/bool' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/checkbox' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/datetime' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/float' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/integer' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/radio' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/range' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/select' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/text' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/textarea' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/url' set_index=set.set_index %}\n

\n

\n {% render_value 'set/single/file' set_index=set.set_index %}\n

\n\n{% endfor %}", + "title_lang1": "View A", + "title_lang2": "Ansicht A", + "title_lang3": "", + "title_lang4": "", + "title_lang5": "", + "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang3": "", + "help_lang4": "", + "help_lang5": "", + "available": true, + "catalogs": [ + 1 + ], + "sites": [ + 1 + ], + "groups": [] } -}, -{ + }, + { "model": "views.view", "pk": 2, "fields": { - "uri": "http://example.com/terms/views/view_b", - "uri_prefix": "http://example.com/terms", - "key": "view_b", - "comment": "", - "locked": false, - "template": "{% load view_tags %}\n\n

Empty

", - "title_lang1": "View B", - "title_lang2": "Ansicht B", - "title_lang3": "", - "title_lang4": "", - "title_lang5": "", - "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang3": "", - "help_lang4": "", - "help_lang5": "", - "available": true, - "catalogs": [ - 1 - ], - "sites": [ - 1 - ], - "groups": [] + "uri": "http://example.com/terms/views/view_b", + "uri_prefix": "http://example.com/terms", + "key": "view_b", + "comment": "", + "locked": false, + "template": "{% load view_tags %}\n\n

Empty

", + "title_lang1": "View B", + "title_lang2": "Ansicht B", + "title_lang3": "", + "title_lang4": "", + "title_lang5": "", + "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang3": "", + "help_lang4": "", + "help_lang5": "", + "available": true, + "catalogs": [ + 1 + ], + "sites": [ + 1 + ], + "groups": [] } -}, -{ + }, + { "model": "views.view", "pk": 3, "fields": { - "uri": "http://example.com/terms/views/view_c", - "uri_prefix": "http://example.com/terms", - "key": "view_c", - "comment": "", - "locked": false, - "template": "{% load view_tags %}\n\n

Empty

", - "title_lang1": "Project Test View C", - "title_lang2": "Projekt Test Ansicht C", - "title_lang3": "", - "title_lang4": "", - "title_lang5": "", - "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "help_lang3": "", - "help_lang4": "", - "help_lang5": "", - "available": true, - "catalogs": [], - "sites": [ - 1 - ], - "groups": [] + "uri": "http://example.com/terms/views/view_c", + "uri_prefix": "http://example.com/terms", + "key": "view_c", + "comment": "", + "locked": false, + "template": "{% load view_tags %}\n\n

Empty

", + "title_lang1": "Project Test View C", + "title_lang2": "Projekt Test Ansicht C", + "title_lang3": "", + "title_lang4": "", + "title_lang5": "", + "help_lang1": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang2": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "help_lang3": "", + "help_lang4": "", + "help_lang5": "", + "available": true, + "catalogs": [], + "sites": [ + 1 + ], + "groups": [] } -} -] + } +] \ No newline at end of file From 104677286aa2792cbb0d352039ad43bbb3d47345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Sat, 22 Oct 2022 14:08:21 +0200 Subject: [PATCH 11/12] Fixed accidentally deleted import, flake8 adjustments --- rdmo/projects/apps.py | 2 ++ rdmo/projects/handlers.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/rdmo/projects/apps.py b/rdmo/projects/apps.py index 37d1b898b1..4664adcbad 100644 --- a/rdmo/projects/apps.py +++ b/rdmo/projects/apps.py @@ -8,5 +8,7 @@ class ProjectsConfig(AppConfig): verbose_name = _('Projects') def ready(self): + from . import rules + if settings.PROJECT_REMOVE_VIEWS: from . import handlers diff --git a/rdmo/projects/handlers.py b/rdmo/projects/handlers.py index 1b46fe1467..b6cf047684 100644 --- a/rdmo/projects/handlers.py +++ b/rdmo/projects/handlers.py @@ -11,6 +11,7 @@ logger = logging.getLogger(__name__) + @receiver(m2m_changed, sender=View.catalogs.through) def m2m_changed_view_catalog_signal(sender, instance, **kwargs): catalogs = instance.catalogs.all() @@ -23,6 +24,7 @@ def m2m_changed_view_catalog_signal(sender, instance, **kwargs): for proj in projects: proj.views.remove(instance) + @receiver(m2m_changed, sender=View.sites.through) def m2m_changed_view_sites_signal(sender, instance, **kwargs): sites = instance.sites.all() @@ -39,6 +41,7 @@ def m2m_changed_view_sites_signal(sender, instance, **kwargs): for project in projects: project.views.remove(instance) + @receiver(m2m_changed, sender=View.groups.through) def m2m_changed_view_groups_signal(sender, instance, **kwargs): groups = instance.groups.all() From 3c8b920683ed11d33d088672bd85720e9499c115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Schr=C3=B6der?= Date: Mon, 24 Oct 2022 09:15:39 +0200 Subject: [PATCH 12/12] flake8 adjustment --- rdmo/views/tests/test_viewset_view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rdmo/views/tests/test_viewset_view.py b/rdmo/views/tests/test_viewset_view.py index 59e16fcbd9..5321de24fc 100644 --- a/rdmo/views/tests/test_viewset_view.py +++ b/rdmo/views/tests/test_viewset_view.py @@ -126,6 +126,7 @@ def test_update(db, client, username, password): response = client.put(url, data, content_type='application/json') assert response.status_code == status_map['update'][username], response.json() + @pytest.mark.parametrize('username,password', users) def test_delete(db, client, username, password): client.login(username=username, password=password)