From 640583b619fbcd4d6a70cdd77f573e28de071b49 Mon Sep 17 00:00:00 2001 From: Kevin Cloud Date: Mon, 4 Oct 2021 19:43:15 -0400 Subject: [PATCH 01/59] Adds link resolver to request broker API --- process_request/helpers.py | 31 +++++++++++++++++++- process_request/serializers.py | 4 +++ process_request/views.py | 24 +++++++++++++++- request_broker/config.py.deploy | 22 ++++++++++++++ request_broker/config.py.example | 22 ++++++++++++++ request_broker/settings.py | 49 ++++++++++++++++++-------------- request_broker/urls.py | 3 +- 7 files changed, 130 insertions(+), 25 deletions(-) create mode 100644 process_request/serializers.py create mode 100644 request_broker/config.py.deploy create mode 100644 request_broker/config.py.example diff --git a/process_request/helpers.py b/process_request/helpers.py index e51bc9d..b3d2c14 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -2,7 +2,8 @@ import inflect import shortuuid -from asnake.utils import get_date_display, get_note_text, text_in_note +from request_broker import settings +from asnake.utils import get_date_display, get_note_text, text_in_note, resolve_to_uri from ordered_set import OrderedSet CONFIDENCE_RATIO = 97 # Minimum confidence ratio to match against. @@ -366,3 +367,31 @@ def list_chunks(lst, n): """ for i in range(0, len(lst), n): yield lst[i:i + n] + +def identifier_from_uri(uri): + """Creates a short UUID. + + Uses `shortuuid`, which first creates a v5 UUID using an object's AS URI as + a name, and then converts them to base57 using lowercase and uppercase + letters and digits, and removing similar-looking characters such as + l, 1, I, O and 0. + + This is a one-way process; while it is possible to consistently generate a + given UUID given an AS URI, it is not possible to decode the URI from the + UUID. + + Helper method copied from https://github.com/ulsdevteam/pisces/blob/base/fetcher/helpers.py#L81 + """ + return shortuuid.uuid(name=uri) + +def resolve_ref_id(repo_id, ref_id, client): + """ Accepts options to find archival objects + using find_by_id method. + Generates and returns a DIMES id from + an ArchiveSpace URI. + + """ + aspace_objs = client.get('/repositories/{}/find_by_id/archival_objects?ref_id[]={}'.format(repo_id,ref_id)).json() + aspace_obj = aspace_objs['archival_objects'][0]['ref'] + resolved = identifier_from_uri(aspace_obj) + return resolved diff --git a/process_request/serializers.py b/process_request/serializers.py new file mode 100644 index 0000000..41e367d --- /dev/null +++ b/process_request/serializers.py @@ -0,0 +1,4 @@ +from rest_framework import serializers + +class LinkResolverSerializer(serializers.Serializer): + ref_id = serializers.CharField() diff --git a/process_request/views.py b/process_request/views.py index bdc3414..6c11ab6 100644 --- a/process_request/views.py +++ b/process_request/views.py @@ -2,12 +2,15 @@ from datetime import datetime from django.http import StreamingHttpResponse +from django.shortcuts import redirect from request_broker import settings +from asnake.aspace import ASpace from rest_framework.response import Response from rest_framework.views import APIView +from .helpers import resolve_ref_id from .routines import AeonRequester, Mailer, Processor - +from .serializers import LinkResolverSerializer class BaseRequestView(APIView): """Base view which handles POST requests returns the appropriate response. @@ -103,3 +106,22 @@ def post(self, request): return response except Exception as e: return Response({"detail": str(e)}, status=500) + +class LinkResolverView(APIView): + """Takes POST from Islandora. Resolves ASpace ID""" + + def get(self,request): + + aspace = ASpace(baseurl=settings.ARCHIVESSPACE["baseurl"], username=settings.ARCHIVESSPACE["username"], password=settings.ARCHIVESSPACE["password"], repository=settings.ARCHIVESSPACE["repo_id"]) + + try: + data = request.GET["ref_id"] + ref_id = LinkResolverSerializer(data) + host = settings.HOSTNAME + repo = settings.ARCHIVESSPACE["repo_id"] + uri = resolve_ref_id(repo, data, aspace.client) + response = redirect("{}/objects/{}".format(host,uri)) + return response + except Exception as e: + return Response({"detail": str(e)}, status=500) + diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy new file mode 100644 index 0000000..3b67c99 --- /dev/null +++ b/request_broker/config.py.deploy @@ -0,0 +1,22 @@ +DJANGO_DEBUG = ${DJANGO_DEBUG} +DJANGO_SECRET_KEY = "${DJANGO_SECRET_KEY}" +DJANGO_ALLOWED_HOSTS = ${DJANGO_ALLOWED_HOSTS} +DJANGO_CORS_ALLOWED_ORIGINS = ${DJANGO_CORS_ALLOWED_ORIGINS} +SQL_ENGINE = "${SQL_ENGINE}" +SQL_DATABASE = "${SQL_DATABASE}" +SQL_USER = "${SQL_USER}" +SQL_PASSWORD = "${SQL_PASSWORD}" +SQL_HOST = "${SQL_HOST}" +SQL_PORT = ${SQL_PORT} +AS_BASEURL = "${AS_BASEURL}" +AS_USERNAME = "${AS_USERNAME}" +AS_PASSWORD = "${AS_PASSWORD}" +AS_REPO_ID = ${AS_REPO_ID} +EMAIL_HOST = "${EMAIL_HOST}" +EMAIL_PORT = ${EMAIL_PORT} +EMAIL_HOST_USER = "${EMAIL_HOST_USER}" +EMAIL_HOST_PASSWORD = "${EMAIL_HOST_PASSWORD}" +EMAIL_USE_TLS = ${EMAIL_USE_TLS} +EMAIL_USE_SSL = ${EMAIL_USE_SSL} +DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" +DIMES_PREFIX = "${DIMES_PREFIX}" diff --git a/request_broker/config.py.example b/request_broker/config.py.example new file mode 100644 index 0000000..3908df5 --- /dev/null +++ b/request_broker/config.py.example @@ -0,0 +1,22 @@ +DJANGO_DEBUG = 1 # run Django in debug mode, which outputs stack traces to the UI, set to False for production (1 for True, 0 for False) +DJANGO_SECRET_KEY = "obop2gifqn6wncaha^dt!w3an-%vkj_&1a@(w-2ci0))^o%#f4" # used by Django to create hashes +DJANGO_ALLOWED_HOSTS = ['request-broker-web', 'localhost'] # hosts Django will respond to (list of strings) +DJANGO_CORS_ALLOWED_ORIGINS = ['http://localhost:3000', 'http://rac-vch.ad.rockarchive.org:3001'] # hosts to add to the CORS Allowed-Origin header (list of strings) +SQL_ENGINE = "django.db.backends.postgresql" # the database engine used by the application (one of django.db.backends) +SQL_DATABASE = "request_broker_dev" # name of the application database +SQL_USER = "postgres" # name of the application database user +SQL_PASSWORD = "postgres" # password for the application database +SQL_HOST = "request-broker-db" # host for the application database +SQL_PORT = 5432 # port on which the application database can be reached +AS_BASEURL = "http://as.rockarch.org:8089/" # base URL for an ArchivesSpace API instance +AS_USERNAME = "admin" # username for an ArchivesSpace user (read-only credentials required) +AS_PASSWORD = "admin" # password for the ArchivesSpace user +AS_REPO_ID = 2 # identifier for an ArchivesSpace repository +EMAIL_HOST = "mail.example.com" # mail host to send emails from +EMAIL_PORT = 123 # port on which mail service is available +EMAIL_HOST_USER = "dimes@example.com" # user that should send email messages +EMAIL_HOST_PASSWORD = "foobar" # password for the email user +EMAIL_USE_TLS = 1 # Use TLS connection for email (1 for True, 0 for False) +EMAIL_USE_SSL = 0 # Use SSL connection for email (1 for True, 0 for False) +DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sender +DIMES_PREFIX = "dimes.rocharch.org" # Hostname for DIMES application diff --git a/request_broker/settings.py b/request_broker/settings.py index d5069c4..b39debc 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -12,6 +12,8 @@ import os +from . import config + # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) @@ -20,12 +22,12 @@ # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = os.environ.get("SECRET_KEY") +SECRET_KEY = config.DJANGO_SECRET_KEY # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = int(os.environ.get("DEBUG", default=True)) +DEBUG = config.DJANGO_DEBUG -ALLOWED_HOSTS = os.environ.get("DJANGO_ALLOWED_HOSTS").split(" ") +ALLOWED_HOSTS = config.DJANGO_ALLOWED_HOSTS # Application definition @@ -38,7 +40,6 @@ 'django.contrib.messages', 'django.contrib.staticfiles', 'corsheaders', - 'health_check', 'process_request', 'rest_framework', ] @@ -81,12 +82,12 @@ DATABASES = { "default": { - "ENGINE": os.environ.get("SQL_ENGINE", "django.db.backends.sqlite3"), - "NAME": os.environ.get("SQL_DATABASE", os.path.join(BASE_DIR, "db.sqlite3")), - "USER": os.environ.get("SQL_USER", "user"), - "PASSWORD": os.environ.get("SQL_PASSWORD", "password"), - "HOST": os.environ.get("SQL_HOST", "localhost"), - "PORT": os.environ.get("SQL_PORT", "5432"), + "ENGINE": config.SQL_ENGINE, + "NAME": config.SQL_DATABASE, + "USER": config.SQL_USER, + "PASSWORD": config.SQL_PASSWORD, + "HOST": config.SQL_HOST, + "PORT": config.SQL_PORT, } } @@ -130,23 +131,27 @@ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, "static") +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + # CORS settings -CORS_ALLOWED_ORIGINS = os.environ.get("CORS_ALLOWED_ORIGINS").split(" ") +CORS_ALLOWED_ORIGINS = config.DJANGO_CORS_ALLOWED_ORIGINS ARCHIVESSPACE = { - "baseurl": os.environ.get("AS_BASEURL", "https://pittsbstaff.as.atlas-sys.com:8089/"), - "username": os.environ.get("AS_USERNAME", "admin"), - "password": os.environ.get("AS_PASSWORD", "admin"), - "repo_id": int(os.environ.get("AS_REPO_ID", default=2)), + "baseurl": config.AS_BASEURL, + "username": config.AS_USERNAME, + "password": config.AS_PASSWORD, + "repo_id": config.AS_REPO_ID, } -EMAIL_HOST = os.environ.get("EMAIL_HOST", "mail.example.org") -EMAIL_PORT = os.environ.get("EMAIL_PORT", default=587) -EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER", "alerts@example.org") -EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD", "password") -EMAIL_USE_TLS = int(os.environ.get("EMAIL_USE_TLS", default=1)) -EMAIL_USE_SSL = int(os.environ.get("EMAIL_USE_SSL", default=0)) -EMAIL_DEFAULT_FROM = os.environ.get("DEFAULT_FROM_EMAIL", "alerts@example.org") +EMAIL_HOST = config.EMAIL_HOST +EMAIL_PORT = config.EMAIL_PORT +EMAIL_HOST_USER = config.EMAIL_HOST_USER +EMAIL_HOST_PASSWORD = config.EMAIL_HOST_PASSWORD +EMAIL_USE_TLS = config.EMAIL_USE_TLS +EMAIL_USE_SSL = config.EMAIL_USE_SSL +EMAIL_DEFAULT_FROM = config.DEFAULT_FROM_EMAIL + +HOSTNAME = config.DIMES_PREFIX EXPORT_FIELDS = [ ("title", None), diff --git a/request_broker/urls.py b/request_broker/urls.py index 4783425..6d282ab 100644 --- a/request_broker/urls.py +++ b/request_broker/urls.py @@ -18,7 +18,7 @@ from process_request.views import (DeliverDuplicationRequestView, DeliverReadingRoomRequestView, DownloadCSVView, MailerView, - ParseRequestView) + ParseRequestView, LinkResolverView) urlpatterns = [ path("admin/", admin.site.urls), @@ -26,6 +26,7 @@ path("api/deliver-request/duplication", DeliverDuplicationRequestView.as_view(), name="deliver-duplication"), path("api/deliver-request/reading-room", DeliverReadingRoomRequestView.as_view(), name="deliver-readingroom"), path("api/process-request/parse", ParseRequestView.as_view(), name="parse-request"), + path("api/process-request/resolve", LinkResolverView.as_view(), name="resolve-request"), path("api/download-csv/", DownloadCSVView.as_view(), name="download-csv"), path("api/status/", include('health_check.api.urls')) ] From c34be9e88a8c13471c0769d408fc579e14c24da4 Mon Sep 17 00:00:00 2001 From: Kevin Cloud Date: Mon, 14 Mar 2022 12:48:39 -0700 Subject: [PATCH 02/59] Update views.py Remove duplicate import, clean up Aspace block --- process_request/views.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/process_request/views.py b/process_request/views.py index 97d898e..43a4b59 100644 --- a/process_request/views.py +++ b/process_request/views.py @@ -5,7 +5,6 @@ from django.http import StreamingHttpResponse from django.shortcuts import redirect from request_broker import settings -from asnake.aspace import ASpace from rest_framework.response import Response from rest_framework.views import APIView @@ -113,7 +112,10 @@ class LinkResolverView(APIView): def get(self,request): - aspace = ASpace(baseurl=settings.ARCHIVESSPACE["baseurl"], username=settings.ARCHIVESSPACE["username"], password=settings.ARCHIVESSPACE["password"], repository=settings.ARCHIVESSPACE["repo_id"]) + aspace = ASpace(baseurl=settings.ARCHIVESSPACE["baseurl"], + username=settings.ARCHIVESSPACE["username"], + password=settings.ARCHIVESSPACE["password"], + repository=settings.ARCHIVESSPACE["repo_id"]) try: data = request.GET["ref_id"] From d23e379665b6d1e9a284e65c33e3a6101e6ebfec Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 21 Mar 2022 18:37:09 -0400 Subject: [PATCH 03/59] linting --- process_request/helpers.py | 9 +++++---- process_request/serializers.py | 4 ---- process_request/views.py | 28 +++++++++++++++------------- request_broker/urls.py | 5 ++--- 4 files changed, 22 insertions(+), 24 deletions(-) delete mode 100644 process_request/serializers.py diff --git a/process_request/helpers.py b/process_request/helpers.py index b3d2c14..7ed1baa 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -2,8 +2,7 @@ import inflect import shortuuid -from request_broker import settings -from asnake.utils import get_date_display, get_note_text, text_in_note, resolve_to_uri +from asnake.utils import get_date_display, get_note_text, text_in_note from ordered_set import OrderedSet CONFIDENCE_RATIO = 97 # Minimum confidence ratio to match against. @@ -368,6 +367,7 @@ def list_chunks(lst, n): for i in range(0, len(lst), n): yield lst[i:i + n] + def identifier_from_uri(uri): """Creates a short UUID. @@ -384,14 +384,15 @@ def identifier_from_uri(uri): """ return shortuuid.uuid(name=uri) + def resolve_ref_id(repo_id, ref_id, client): - """ Accepts options to find archival objects + """ Accepts options to find archival objects using find_by_id method. Generates and returns a DIMES id from an ArchiveSpace URI. """ - aspace_objs = client.get('/repositories/{}/find_by_id/archival_objects?ref_id[]={}'.format(repo_id,ref_id)).json() + aspace_objs = client.get('/repositories/{}/find_by_id/archival_objects?ref_id[]={}'.format(repo_id, ref_id)).json() aspace_obj = aspace_objs['archival_objects'][0]['ref'] resolved = identifier_from_uri(aspace_obj) return resolved diff --git a/process_request/serializers.py b/process_request/serializers.py deleted file mode 100644 index 41e367d..0000000 --- a/process_request/serializers.py +++ /dev/null @@ -1,4 +0,0 @@ -from rest_framework import serializers - -class LinkResolverSerializer(serializers.Serializer): - ref_id = serializers.CharField() diff --git a/process_request/views.py b/process_request/views.py index 43a4b59..5147e1f 100644 --- a/process_request/views.py +++ b/process_request/views.py @@ -4,13 +4,14 @@ from asnake.aspace import ASpace from django.http import StreamingHttpResponse from django.shortcuts import redirect -from request_broker import settings from rest_framework.response import Response from rest_framework.views import APIView +from request_broker import settings + from .helpers import resolve_ref_id from .routines import AeonRequester, Mailer, Processor -from .serializers import LinkResolverSerializer + class BaseRequestView(APIView): """Base view which handles POST requests returns the appropriate response. @@ -107,27 +108,28 @@ def post(self, request): except Exception as e: return Response({"detail": str(e)}, status=500) + class LinkResolverView(APIView): """Takes POST from Islandora. Resolves ASpace ID""" - def get(self,request): + def get(self, request): - aspace = ASpace(baseurl=settings.ARCHIVESSPACE["baseurl"], - username=settings.ARCHIVESSPACE["username"], - password=settings.ARCHIVESSPACE["password"], + aspace = ASpace(baseurl=settings.ARCHIVESSPACE["baseurl"], + username=settings.ARCHIVESSPACE["username"], + password=settings.ARCHIVESSPACE["password"], repository=settings.ARCHIVESSPACE["repo_id"]) try: - data = request.GET["ref_id"] - ref_id = LinkResolverSerializer(data) - host = settings.HOSTNAME - repo = settings.ARCHIVESSPACE["repo_id"] - uri = resolve_ref_id(repo, data, aspace.client) - response = redirect("{}/objects/{}".format(host,uri)) - return response + data = request.GET["ref_id"] + host = settings.HOSTNAME + repo = settings.ARCHIVESSPACE["repo_id"] + uri = resolve_ref_id(repo, data, aspace.client) + response = redirect("{}/objects/{}".format(host, uri)) + return response except Exception as e: return Response({"detail": str(e)}, status=500) + class PingView(APIView): """Checks if the application is able to process requests.""" diff --git a/request_broker/urls.py b/request_broker/urls.py index 06aaabb..df92cfa 100644 --- a/request_broker/urls.py +++ b/request_broker/urls.py @@ -18,9 +18,8 @@ from process_request.views import (DeliverDuplicationRequestView, DeliverReadingRoomRequestView, - DownloadCSVView, MailerView, - ParseRequestView, LinkResolverView, - PingView) + DownloadCSVView, LinkResolverView, + MailerView, ParseRequestView, PingView) urlpatterns = [ path("admin/", admin.site.urls), From 4f19f1366ad4d5a7290571261bdfb741ed36e955 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 13 Jun 2022 15:26:27 -0400 Subject: [PATCH 04/59] update dependencies --- requirements.in | 8 ++++---- requirements.txt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/requirements.in b/requirements.in index 4081a8d..8877864 100644 --- a/requirements.in +++ b/requirements.in @@ -1,10 +1,10 @@ ArchivesSnake==0.9.1 -Django==4.0.3 -django-cors-headers==3.11.0 +Django==4.0.4 +django-cors-headers==3.12.0 djangorestframework==3.13.1 -inflect==5.4.0 +inflect==5.6.0 ordered-set==4.1.0 psycopg2-binary==2.9.3 requests==2.27.1 -shortuuid==1.0.8 +shortuuid==1.0.9 vcrpy==4.1.1 diff --git a/requirements.txt b/requirements.txt index 150ce07..fdac2ba 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,12 +16,12 @@ certifi==2021.10.8 # via requests charset-normalizer==2.0.12 # via requests -django==4.0.3 +django==4.0.4 # via # -r requirements.in # django-cors-headers # djangorestframework -django-cors-headers==3.11.0 +django-cors-headers==3.12.0 # via -r requirements.in djangorestframework==3.13.1 # via -r requirements.in @@ -29,7 +29,7 @@ idna==3.3 # via # requests # yarl -inflect==5.4.0 +inflect==5.6.0 # via -r requirements.in jarowinkler==1.0.1 # via rapidfuzz @@ -53,7 +53,7 @@ requests==2.27.1 # via # -r requirements.in # archivessnake -shortuuid==1.0.8 +shortuuid==1.0.9 # via -r requirements.in six==1.16.0 # via vcrpy From f511e81ffa91e43c5dcfdfc4b970571bc568ae91 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 13 Jun 2022 15:31:47 -0400 Subject: [PATCH 05/59] updates django --- requirements.in | 2 +- requirements.txt | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/requirements.in b/requirements.in index 8877864..9b54def 100644 --- a/requirements.in +++ b/requirements.in @@ -1,5 +1,5 @@ ArchivesSnake==0.9.1 -Django==4.0.4 +Django==4.0.5 django-cors-headers==3.12.0 djangorestframework==3.13.1 inflect==5.6.0 diff --git a/requirements.txt b/requirements.txt index fdac2ba..bac73de 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,17 +6,17 @@ # archivessnake==0.9.1 # via -r requirements.in -asgiref==3.5.0 +asgiref==3.5.2 # via django attrs==21.4.0 # via archivessnake boltons==21.0.0 # via archivessnake -certifi==2021.10.8 +certifi==2022.5.18.1 # via requests charset-normalizer==2.0.12 # via requests -django==4.0.4 +django==4.0.5 # via # -r requirements.in # django-cors-headers @@ -31,9 +31,9 @@ idna==3.3 # yarl inflect==5.6.0 # via -r requirements.in -jarowinkler==1.0.1 +jarowinkler==1.0.2 # via rapidfuzz -more-itertools==8.12.0 +more-itertools==8.13.0 # via archivessnake multidict==6.0.2 # via yarl @@ -41,13 +41,13 @@ ordered-set==4.1.0 # via -r requirements.in psycopg2-binary==2.9.3 # via -r requirements.in -pytz==2021.3 +pytz==2022.1 # via djangorestframework pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.0.6 +rapidfuzz==2.0.11 # via archivessnake requests==2.27.1 # via @@ -61,11 +61,11 @@ sqlparse==0.4.2 # via django structlog==21.5.0 # via archivessnake -urllib3==1.26.8 +urllib3==1.26.9 # via requests vcrpy==4.1.1 # via -r requirements.in -wrapt==1.14.0 +wrapt==1.14.1 # via vcrpy yarl==1.7.2 # via vcrpy From 76f4470ba16392b6c29763a032921c1d5b1cd4cb Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 6 Jul 2022 10:36:03 -0400 Subject: [PATCH 06/59] add gh-actions file, remove dependabot --- .github/dependabot.yml | 7 ------ .github/workflows/dependencies.yml | 34 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 7 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/dependencies.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index f052884..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "pip" - directory: "/" - schedule: - interval: "monthly" - target-branch: "development" diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml new file mode 100644 index 0000000..ba6fac3 --- /dev/null +++ b/.github/workflows/dependencies.yml @@ -0,0 +1,34 @@ +name: update dependencies +on: + + schedule: + - cron: '0 0 1 * *' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + ref: development + + - uses: python/setup-python@v4 + with: + python-version: '3.10' + cache: pip + - run: | + pip install pip-tools + pip-compile + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + base: development + branch: dependency-updates + delete-branch: true + title: Dependency Updates + commit-message: Dependency updates From 98071332609808c24e00b0dd7957402f11b661ac Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 6 Jul 2022 10:36:16 -0400 Subject: [PATCH 07/59] update requirements --- requirements.in | 20 ++++++++++---------- requirements.txt | 14 +++++++------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/requirements.in b/requirements.in index 9b54def..3b6992b 100644 --- a/requirements.in +++ b/requirements.in @@ -1,10 +1,10 @@ -ArchivesSnake==0.9.1 -Django==4.0.5 -django-cors-headers==3.12.0 -djangorestframework==3.13.1 -inflect==5.6.0 -ordered-set==4.1.0 -psycopg2-binary==2.9.3 -requests==2.27.1 -shortuuid==1.0.9 -vcrpy==4.1.1 +ArchivesSnake~=0.9 +Django~=4.0 +django-cors-headers~=3.12 +djangorestframework~=3.13 +inflect~=5.6 +ordered-set~=4.1 +psycopg2-binary~=2.9 +requests~=2.28 +shortuuid~=1.0 +vcrpy~=4.1.1 diff --git a/requirements.txt b/requirements.txt index bac73de..4ebeff6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,16 +12,16 @@ attrs==21.4.0 # via archivessnake boltons==21.0.0 # via archivessnake -certifi==2022.5.18.1 +certifi==2022.6.15 # via requests -charset-normalizer==2.0.12 +charset-normalizer==2.1.0 # via requests -django==4.0.5 +django==4.0.6 # via # -r requirements.in # django-cors-headers # djangorestframework -django-cors-headers==3.12.0 +django-cors-headers==3.13.0 # via -r requirements.in djangorestframework==3.13.1 # via -r requirements.in @@ -31,7 +31,7 @@ idna==3.3 # yarl inflect==5.6.0 # via -r requirements.in -jarowinkler==1.0.2 +jarowinkler==1.1.0 # via rapidfuzz more-itertools==8.13.0 # via archivessnake @@ -47,9 +47,9 @@ pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.0.11 +rapidfuzz==2.1.2 # via archivessnake -requests==2.27.1 +requests==2.28.1 # via # -r requirements.in # archivessnake From bbbc0604946a4e5fa477b6e990030a3e9f1cd3b6 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 6 Jul 2022 10:36:30 -0400 Subject: [PATCH 08/59] use upgrade flag --- .github/workflows/dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index ba6fac3..2df1182 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -21,7 +21,7 @@ jobs: cache: pip - run: | pip install pip-tools - pip-compile + pip-compile --upgrade - name: Create Pull Request uses: peter-evans/create-pull-request@v4 From 6fe30e9869db68f49249bf3b0fb404546412a5b1 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 6 Jul 2022 10:48:26 -0400 Subject: [PATCH 09/59] update vcrpy --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index 3b6992b..f923b31 100644 --- a/requirements.in +++ b/requirements.in @@ -7,4 +7,4 @@ ordered-set~=4.1 psycopg2-binary~=2.9 requests~=2.28 shortuuid~=1.0 -vcrpy~=4.1.1 +vcrpy~=4.2 diff --git a/requirements.txt b/requirements.txt index 4ebeff6..a0339d8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -63,7 +63,7 @@ structlog==21.5.0 # via archivessnake urllib3==1.26.9 # via requests -vcrpy==4.1.1 +vcrpy==4.2.0 # via -r requirements.in wrapt==1.14.1 # via vcrpy From 955a1f55e3e8545dde80a5de7aa07dc6a6926211 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 6 Jul 2022 11:20:41 -0400 Subject: [PATCH 10/59] update setup URL --- .github/workflows/dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 2df1182..7152a65 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -15,7 +15,7 @@ jobs: with: ref: development - - uses: python/setup-python@v4 + - uses: actions/setup-python@v4 with: python-version: '3.10' cache: pip From 2c3b85ec0dfcfb4f276aba3a9c99be48e4767483 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 7 Jul 2022 16:47:45 -0400 Subject: [PATCH 11/59] formatting --- process_request/helpers.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 7ed1baa..5da566b 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -386,11 +386,9 @@ def identifier_from_uri(uri): def resolve_ref_id(repo_id, ref_id, client): - """ Accepts options to find archival objects - using find_by_id method. - Generates and returns a DIMES id from - an ArchiveSpace URI. + """ Accepts options to find archival objects using find_by_id method. + Generates and returns a DIMES id from an ArchiveSpace URI. """ aspace_objs = client.get('/repositories/{}/find_by_id/archival_objects?ref_id[]={}'.format(repo_id, ref_id)).json() aspace_obj = aspace_objs['archival_objects'][0]['ref'] From 3365b098fa4fa208041828f9c5001b88ae83e0ce Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 7 Jul 2022 16:48:09 -0400 Subject: [PATCH 12/59] fix typo --- request_broker/config.py.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/request_broker/config.py.example b/request_broker/config.py.example index 3908df5..23d6d3b 100644 --- a/request_broker/config.py.example +++ b/request_broker/config.py.example @@ -19,4 +19,4 @@ EMAIL_HOST_PASSWORD = "foobar" # password for the email user EMAIL_USE_TLS = 1 # Use TLS connection for email (1 for True, 0 for False) EMAIL_USE_SSL = 0 # Use SSL connection for email (1 for True, 0 for False) DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sender -DIMES_PREFIX = "dimes.rocharch.org" # Hostname for DIMES application +DIMES_PREFIX = "dimes.rockarch.org" # Hostname for DIMES application From d70455c5c690f795191ec70a81b9d346cca2f1ff Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 7 Jul 2022 16:48:25 -0400 Subject: [PATCH 13/59] add test for LinkResolver view --- process_request/tests.py | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/process_request/tests.py b/process_request/tests.py index 42ebc92..6769525 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -1,7 +1,7 @@ import csv from datetime import date from os.path import join -from unittest.mock import patch +from unittest.mock import patch, ANY import vcr from asnake.aspace import ASpace @@ -386,6 +386,20 @@ def test_deliver_duplicationrequest_view(self, mock_send): @aspace_vcr.use_cassette("aspace_request.json") def test_status_view(self): - client = RequestsClient() - response = client.get("http://testserver{}".format(reverse("ping"))) - assert response.status_code == 200 + response = self.client.get("http://testserver{}".format(reverse("ping"))) + self.assertEqual(response.status_code, 200) + + @patch("process_request.views.resolve_ref_id") + def test_linkresolver_view(self, mock_resolve): + with aspace_vcr.use_cassette("aspace_request.json") as cass: + mock_uri = "123" + mock_refid = "12345abcdef" + mock_resolve.return_value = mock_uri + response = self.client.get(reverse('resolve-request'), {"ref_id": mock_refid}) + self.assertEqual(response.status_code, 302) + self.assertEqual(response.url, f"{settings.HOSTNAME}/objects/{mock_uri}") + mock_resolve.assert_called_with(settings.ARCHIVESSPACE["repo_id"], mock_refid, ANY) + + cass.rewind() + response = self.client.get(reverse('resolve-request')) + self.assertEqual(response.status_code, 500) From ab4e5d6f77801b6b4158aaac72007bc0983a4f68 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 7 Jul 2022 16:52:43 -0400 Subject: [PATCH 14/59] renaming and consistently using hostname variables --- process_request/tests.py | 2 +- process_request/views.py | 12 ++++++------ request_broker/config.py.deploy | 2 +- request_broker/config.py.example | 2 +- request_broker/settings.py | 3 ++- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/process_request/tests.py b/process_request/tests.py index 6769525..d3caa66 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -397,7 +397,7 @@ def test_linkresolver_view(self, mock_resolve): mock_resolve.return_value = mock_uri response = self.client.get(reverse('resolve-request'), {"ref_id": mock_refid}) self.assertEqual(response.status_code, 302) - self.assertEqual(response.url, f"{settings.HOSTNAME}/objects/{mock_uri}") + self.assertEqual(response.url, f"{settings.RESOLVER_HOSTNAME}/objects/{mock_uri}") mock_resolve.assert_called_with(settings.ARCHIVESSPACE["repo_id"], mock_refid, ANY) cass.rewind() diff --git a/process_request/views.py b/process_request/views.py index 5147e1f..925786a 100644 --- a/process_request/views.py +++ b/process_request/views.py @@ -31,7 +31,7 @@ class ParseRequestView(BaseRequestView): def get_response_data(self, request): uri = request.data.get("item") - baseurl = request.META.get("HTTP_ORIGIN", "https://dimes.rockarch.org") + baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") return Processor().parse_item(uri, baseurl) @@ -43,7 +43,7 @@ def get_response_data(self, request): to_address = request.data.get("email") subject = request.data.get("subject", "") message = request.data.get("message") - baseurl = request.META.get("HTTP_ORIGIN", "https://dimes.rockarch.org") + baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") emailed = Mailer().send_message(to_address, object_list, subject, message, baseurl) return {"detail": emailed} @@ -53,7 +53,7 @@ class DeliverReadingRoomRequestView(BaseRequestView): def get_response_data(self, request): request_data = request.data - baseurl = request.META.get("HTTP_ORIGIN", "https://dimes.rockarch.org") + baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") delivered = AeonRequester().get_request_data( "readingroom", baseurl, **request_data) return delivered @@ -64,7 +64,7 @@ class DeliverDuplicationRequestView(BaseRequestView): def get_response_data(self, request): request_data = request.data - baseurl = request.META.get("HTTP_ORIGIN", "https://dimes.rockarch.org") + baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") delivered = AeonRequester().get_request_data( "duplication", baseurl, **request_data) return delivered @@ -95,7 +95,7 @@ def post(self, request): """Streams a large CSV file.""" try: submitted = request.data.get("items") - baseurl = request.META.get("HTTP_ORIGIN", "https://dimes.rockarch.org") + baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") processor = Processor() fetched = processor.get_data(submitted, baseurl) response = StreamingHttpResponse( @@ -121,7 +121,7 @@ def get(self, request): try: data = request.GET["ref_id"] - host = settings.HOSTNAME + host = settings.RESOLVER_HOSTNAME repo = settings.ARCHIVESSPACE["repo_id"] uri = resolve_ref_id(repo, data, aspace.client) response = redirect("{}/objects/{}".format(host, uri)) diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy index 3b67c99..b80052f 100644 --- a/request_broker/config.py.deploy +++ b/request_broker/config.py.deploy @@ -19,4 +19,4 @@ EMAIL_HOST_PASSWORD = "${EMAIL_HOST_PASSWORD}" EMAIL_USE_TLS = ${EMAIL_USE_TLS} EMAIL_USE_SSL = ${EMAIL_USE_SSL} DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" -DIMES_PREFIX = "${DIMES_PREFIX}" +DIMES_HOSTNAME = "${DIMES_HOSTNAME}" diff --git a/request_broker/config.py.example b/request_broker/config.py.example index 23d6d3b..d47060e 100644 --- a/request_broker/config.py.example +++ b/request_broker/config.py.example @@ -19,4 +19,4 @@ EMAIL_HOST_PASSWORD = "foobar" # password for the email user EMAIL_USE_TLS = 1 # Use TLS connection for email (1 for True, 0 for False) EMAIL_USE_SSL = 0 # Use SSL connection for email (1 for True, 0 for False) DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sender -DIMES_PREFIX = "dimes.rockarch.org" # Hostname for DIMES application +DIMES_HOSTNAME = "dimes.rockarch.org" # Hostname for DIMES application diff --git a/request_broker/settings.py b/request_broker/settings.py index b39debc..6a61e1b 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -135,6 +135,7 @@ # CORS settings CORS_ALLOWED_ORIGINS = config.DJANGO_CORS_ALLOWED_ORIGINS +DIMES_HOSTNAME = config.DIMES_HOSTNAME ARCHIVESSPACE = { "baseurl": config.AS_BASEURL, @@ -151,7 +152,7 @@ EMAIL_USE_SSL = config.EMAIL_USE_SSL EMAIL_DEFAULT_FROM = config.DEFAULT_FROM_EMAIL -HOSTNAME = config.DIMES_PREFIX +RESOLVER_HOSTNAME = config.DIMES_HOSTNAME EXPORT_FIELDS = [ ("title", None), From 74a99d3630fa988a648e43673f937c9ed6ed9f65 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 7 Jul 2022 16:57:10 -0400 Subject: [PATCH 15/59] linting --- process_request/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process_request/tests.py b/process_request/tests.py index d3caa66..bc8903a 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -1,7 +1,7 @@ import csv from datetime import date from os.path import join -from unittest.mock import patch, ANY +from unittest.mock import ANY, patch import vcr from asnake.aspace import ASpace @@ -9,7 +9,7 @@ from django.http import StreamingHttpResponse from django.test import TestCase from django.urls import reverse -from rest_framework.test import APIRequestFactory, RequestsClient +from rest_framework.test import APIRequestFactory from request_broker import settings From 515cd88d36cd223a922385d03bbd6da9ce79b444 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 26 Jul 2022 11:46:07 -0400 Subject: [PATCH 16/59] add config for restricted in box --- request_broker/config.py.deploy | 1 + request_broker/config.py.example | 1 + request_broker/settings.py | 2 ++ 3 files changed, 4 insertions(+) diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy index b80052f..32c8ca4 100644 --- a/request_broker/config.py.deploy +++ b/request_broker/config.py.deploy @@ -20,3 +20,4 @@ EMAIL_USE_TLS = ${EMAIL_USE_TLS} EMAIL_USE_SSL = ${EMAIL_USE_SSL} DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" DIMES_HOSTNAME = "${DIMES_HOSTNAME}" +RESTRICTED_IN_CONTAINER = ${RESTRICTED_IN_CONTAINER} diff --git a/request_broker/config.py.example b/request_broker/config.py.example index d47060e..2161977 100644 --- a/request_broker/config.py.example +++ b/request_broker/config.py.example @@ -20,3 +20,4 @@ EMAIL_USE_TLS = 1 # Use TLS connection for email (1 for True, 0 for False) EMAIL_USE_SSL = 0 # Use SSL connection for email (1 for True, 0 for False) DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sender DIMES_HOSTNAME = "dimes.rockarch.org" # Hostname for DIMES application +RESTRICTED_IN_CONTAINER = False # Fetch a list of restricted items in the same container as the requested item. diff --git a/request_broker/settings.py b/request_broker/settings.py index 6a61e1b..3c950c4 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -162,3 +162,5 @@ ("size", "Size"), ("collection_name", "Collection Name"), ("parent", "Parent Collection Name")] + +RESTRICTED_IN_CONTAINER = config.RESTRICTED_IN_CONTAINER From ef7ee32243f76e8dacdd9ff8401733115103f7c0 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 26 Jul 2022 11:47:08 -0400 Subject: [PATCH 17/59] fetch restricted material in same box --- process_request/helpers.py | 38 +++++++++++++++++++++++++++++++++++++ process_request/routines.py | 5 ++++- 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 5da566b..7de2271 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -1,3 +1,4 @@ +import json import re import inflect @@ -154,6 +155,43 @@ def get_preferred_format(item_json): return preferred +def get_restricted_in_container(container_uri, client): + """Fetches information about other restricted items in the same container. + + Args: + container_uri (string): A URI for an ArchivesSpace Top Container. + + Returns: + restricted (string): a comma-separated list of other restricted items in + the same container. + """ + restricted = [] + this_page = 1 + more = True + while more: + escaped_url = container_uri.replace('/', '\\/') + search_uri = f"search?q=top_container_uri_u_sstr:{escaped_url}&page={this_page}&fields[]=uri,json,ancestors&resolve[]=ancestors:id&type[]=archival_object&page_size=25" + items_in_container = client.get(search_uri).json() + for item in items_in_container["results"]: + item_json = json.loads(item["json"]) + status = get_rights_status(item_json, client) + if not status: + for ancestor_uri in item["_resolved_ancestors"]: + for ancestor in item["_resolved_ancestors"][ancestor_uri]: + status = get_rights_status(json.loads(ancestor["json"]), client) + if status: + break + if status in ["closed", "conditional"]: + for instance in item_json["instances"]: + sub_container = instance["sub_container"] + restricted.append(f"{sub_container.get('type_2').capitalize()} {sub_container.get('indicator_2')}") + this_page += 1 + if this_page > items_in_container["last_page"]: + more = False + print(restricted) + return ", ".join(restricted) + + def get_rights_info(item_json, client): """Gets rights status and text for an archival object. diff --git a/process_request/routines.py b/process_request/routines.py index cf91cc8..b7d020c 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -5,7 +5,8 @@ from .helpers import (get_container_indicators, get_dates, get_parent_title, get_preferred_format, get_resource_creators, - get_rights_info, get_size, get_url, list_chunks) + get_restricted_in_container, get_rights_info, get_size, + get_url, list_chunks) class Processor(object): @@ -49,6 +50,7 @@ def get_data(self, uri_list, dimes_baseurl): "creators": get_resource_creators(item_collection), "restrictions": restrictions, "restrictions_text": restrictions_text, + "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri) else None, "collection_name": item_collection.get("title"), "parent": parent, "dates": get_dates(item_json, aspace.client), @@ -269,6 +271,7 @@ def parse_items(self, items, description=""): for i in items: request_prefix = i["uri"].split("/")[-1] parsed["Request"].append(request_prefix) + # TODO: add restricted_in_container parsed.update({ "CallNumber_{}".format(request_prefix): i["resource_id"], "GroupingField_{}".format(request_prefix): i["preferred_instance"]["uri"], From dc6f333ebd9e1f5dcab6b50417a0aa808dc4987d Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 26 Jul 2022 13:11:51 -0400 Subject: [PATCH 18/59] add tests --- fixtures/restricted_search.json | 1590 +++++++++++++++++++++++++++++ fixtures/unrestricted_search.json | 985 ++++++++++++++++++ process_request/helpers.py | 1 - process_request/routines.py | 3 +- process_request/tests.py | 20 +- 5 files changed, 2591 insertions(+), 8 deletions(-) create mode 100644 fixtures/restricted_search.json create mode 100644 fixtures/unrestricted_search.json diff --git a/fixtures/restricted_search.json b/fixtures/restricted_search.json new file mode 100644 index 0000000..6a6e227 --- /dev/null +++ b/fixtures/restricted_search.json @@ -0,0 +1,1590 @@ +{ + "page_size": 25, + "first_page": 1, + "last_page": 1, + "this_page": 1, + "offset_first": 1, + "offset_last": 13, + "total_hits": 13, + "results": [{ + "uri": "/repositories/2/archival_objects/502963", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":20,\"publish\":true,\"ref_id\":\"c9b0654b5ca34d9db47edc9ab9d8b18b\",\"title\":\"Geographic Studies: Asia, C-05.4, Expenses\",\"display_string\":\"Geographic Studies: Asia, C-05.4, Expenses, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805486\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"122A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"d4a80d4cdd88eaee8e47d7b28cbd583b\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502963\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502966", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":23,\"publish\":true,\"ref_id\":\"d445e2f431d14e16a9b60471d4b19f56\",\"title\":\"Geographic Studies: Latin America, C-05.6, CSIS\",\"display_string\":\"Geographic Studies: Latin America, C-05.6, CSIS, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:03:01Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805483\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:03:01Z\",\"system_mtime\":\"2021-01-28T18:03:01Z\",\"user_mtime\":\"2021-01-28T18:03:01Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:03:01Z\",\"system_mtime\":\"2021-01-28T18:03:01Z\",\"user_mtime\":\"2021-01-28T18:03:01Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:03:01Z\",\"system_mtime\":\"2021-01-28T18:03:01Z\",\"user_mtime\":\"2021-01-28T18:03:01Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"124A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:03:01Z\",\"system_mtime\":\"2021-01-28T18:03:01Z\",\"user_mtime\":\"2021-01-28T18:03:01Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502966\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502954", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":11,\"publish\":true,\"ref_id\":\"e7f2b2ae5ec74dcd954a70e2676af431\",\"title\":\"Geographic Studies: Africa, C-05.7, Contracts\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Contracts, 1974-1975\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:34Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805495\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:34Z\",\"system_mtime\":\"2021-01-28T18:01:34Z\",\"user_mtime\":\"2021-01-28T18:01:34Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1975\",\"begin\":\"1974\",\"end\":\"1975\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:34Z\",\"system_mtime\":\"2021-01-28T18:01:34Z\",\"user_mtime\":\"2021-01-28T18:01:34Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:34Z\",\"system_mtime\":\"2021-01-28T18:01:34Z\",\"user_mtime\":\"2021-01-28T18:01:34Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"117A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:34Z\",\"system_mtime\":\"2021-01-28T18:01:34Z\",\"user_mtime\":\"2021-01-28T18:01:34Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502954\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502955", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":12,\"publish\":true,\"ref_id\":\"12a803f195b9498abc08db1bc65365a6\",\"title\":\"Geographic Studies: Africa, C-05.7, Contracts\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Contracts, 1974-1975\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:00Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805494\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:00Z\",\"system_mtime\":\"2021-06-03T18:48:00Z\",\"user_mtime\":\"2021-06-03T18:48:00Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1975\",\"begin\":\"1974\",\"end\":\"1975\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:00Z\",\"system_mtime\":\"2021-06-03T18:48:00Z\",\"user_mtime\":\"2021-06-03T18:48:00Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:00Z\",\"system_mtime\":\"2021-06-03T18:48:00Z\",\"user_mtime\":\"2021-06-03T18:48:00Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"117A.1\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:00Z\",\"system_mtime\":\"2021-06-03T18:48:00Z\",\"user_mtime\":\"2021-06-03T18:48:00Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"1f040502adc58f659a47db5149436fe4\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502955\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502957", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":14,\"publish\":true,\"ref_id\":\"a693686a7a6e4650b491e6fb63487eb0\",\"title\":\"Geographic Studies: Africa, C-05.7, Contracts\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Contracts, 1974-1975\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:01Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805492\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:01Z\",\"system_mtime\":\"2021-06-03T18:48:01Z\",\"user_mtime\":\"2021-06-03T18:48:01Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1975\",\"begin\":\"1974\",\"end\":\"1975\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:01Z\",\"system_mtime\":\"2021-06-03T18:48:01Z\",\"user_mtime\":\"2021-06-03T18:48:01Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:01Z\",\"system_mtime\":\"2021-06-03T18:48:01Z\",\"user_mtime\":\"2021-06-03T18:48:01Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"118A.1\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:01Z\",\"system_mtime\":\"2021-06-03T18:48:01Z\",\"user_mtime\":\"2021-06-03T18:48:01Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"652ed27bb270105cc0f1d08f7d30e3fc\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502957\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502959", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":16,\"publish\":true,\"ref_id\":\"57497ac9021944c982532728b9a0ef17\",\"title\":\"Geographic Studies: Africa, C-05.7, Miscellaneous and General\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Miscellaneous and General, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:02:05Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805490\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:05Z\",\"system_mtime\":\"2021-01-28T18:02:05Z\",\"user_mtime\":\"2021-01-28T18:02:05Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:05Z\",\"system_mtime\":\"2021-01-28T18:02:05Z\",\"user_mtime\":\"2021-01-28T18:02:05Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:05Z\",\"system_mtime\":\"2021-01-28T18:02:05Z\",\"user_mtime\":\"2021-01-28T18:02:05Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"120A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:05Z\",\"system_mtime\":\"2021-01-28T18:02:05Z\",\"user_mtime\":\"2021-01-28T18:02:05Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502959\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502962", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":19,\"publish\":true,\"ref_id\":\"0e0799190733400689024b0588e9fe6e\",\"title\":\"Geographic Studies: Asia, C-05.4, Contracts\",\"display_string\":\"Geographic Studies: Asia, C-05.4, Contracts, 1974-1975\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805487\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1975\",\"begin\":\"1974\",\"end\":\"1975\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"121A.1\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:04Z\",\"system_mtime\":\"2021-06-03T18:48:04Z\",\"user_mtime\":\"2021-06-03T18:48:04Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"4e47969b14eed398b408b47b13536f4f\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502962\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502964", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":21,\"publish\":true,\"ref_id\":\"e0e0f2a2a1df4e5fb65af3ec83690d0b\",\"title\":\"Geographic Studies: Asia, C-05.4, Miscellaneous and General\",\"display_string\":\"Geographic Studies: Asia, C-05.4, Miscellaneous and General, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:02:59Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805485\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:59Z\",\"system_mtime\":\"2021-01-28T18:02:59Z\",\"user_mtime\":\"2021-01-28T18:02:59Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:59Z\",\"system_mtime\":\"2021-01-28T18:02:59Z\",\"user_mtime\":\"2021-01-28T18:02:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:59Z\",\"system_mtime\":\"2021-01-28T18:02:59Z\",\"user_mtime\":\"2021-01-28T18:02:59Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"123A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:59Z\",\"system_mtime\":\"2021-01-28T18:02:59Z\",\"user_mtime\":\"2021-01-28T18:02:59Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502964\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502965", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":22,\"publish\":true,\"ref_id\":\"d53e5eda04b247b5a9bdcf2b18f239b4\",\"title\":\"Geographic Studies: Asia, C-05.4, Miscellaneous and General\",\"display_string\":\"Geographic Studies: Asia, C-05.4, Miscellaneous and General, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:05Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805484\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:05Z\",\"system_mtime\":\"2021-06-03T18:48:05Z\",\"user_mtime\":\"2021-06-03T18:48:05Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:05Z\",\"system_mtime\":\"2021-06-03T18:48:05Z\",\"user_mtime\":\"2021-06-03T18:48:05Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:05Z\",\"system_mtime\":\"2021-06-03T18:48:05Z\",\"user_mtime\":\"2021-06-03T18:48:05Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"123A.1\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:05Z\",\"system_mtime\":\"2021-06-03T18:48:05Z\",\"user_mtime\":\"2021-06-03T18:48:05Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"da25adb324ff03a17246f0f54842181e\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502965\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502956", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":13,\"publish\":true,\"ref_id\":\"043dffa61b6749868ae39eda93a99e83\",\"title\":\"Geographic Studies: Africa, C-05.7, Contracts\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Contracts, 1974-1975\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:35Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805493\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:35Z\",\"system_mtime\":\"2021-01-28T18:01:35Z\",\"user_mtime\":\"2021-01-28T18:01:35Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1975\",\"begin\":\"1974\",\"end\":\"1975\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:35Z\",\"system_mtime\":\"2021-01-28T18:01:35Z\",\"user_mtime\":\"2021-01-28T18:01:35Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:35Z\",\"system_mtime\":\"2021-01-28T18:01:35Z\",\"user_mtime\":\"2021-01-28T18:01:35Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"118A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:35Z\",\"system_mtime\":\"2021-01-28T18:01:35Z\",\"user_mtime\":\"2021-01-28T18:01:35Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502956\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502958", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":15,\"publish\":true,\"ref_id\":\"ee137e6aad254e49a4e6c63521689fb9\",\"title\":\"Geographic Studies: Africa, C-05.7, Expenses\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Expenses, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:02Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805491\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:02Z\",\"system_mtime\":\"2021-06-03T18:48:02Z\",\"user_mtime\":\"2021-06-03T18:48:02Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:02Z\",\"system_mtime\":\"2021-06-03T18:48:02Z\",\"user_mtime\":\"2021-06-03T18:48:02Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:02Z\",\"system_mtime\":\"2021-06-03T18:48:02Z\",\"user_mtime\":\"2021-06-03T18:48:02Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"119A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:02Z\",\"system_mtime\":\"2021-06-03T18:48:02Z\",\"user_mtime\":\"2021-06-03T18:48:02Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"786946573952226951d378487377f66c\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502958\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502960", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":4,\"position\":17,\"publish\":true,\"ref_id\":\"4e49c0456f1143019aa2b7ad4296dac8\",\"title\":\"Geographic Studies: Africa, C-05.7, Miscellaneous and General\",\"display_string\":\"Geographic Studies: Africa, C-05.7, Miscellaneous and General, 1974-1976\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-06-03T18:48:03Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805489\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:03Z\",\"system_mtime\":\"2021-06-03T18:48:03Z\",\"user_mtime\":\"2021-06-03T18:48:03Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1976\",\"begin\":\"1974\",\"end\":\"1976\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:03Z\",\"system_mtime\":\"2021-06-03T18:48:03Z\",\"user_mtime\":\"2021-06-03T18:48:03Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:03Z\",\"system_mtime\":\"2021-06-03T18:48:03Z\",\"user_mtime\":\"2021-06-03T18:48:03Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"120A.1\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-06-03T18:48:03Z\",\"system_mtime\":\"2021-06-03T18:48:03Z\",\"user_mtime\":\"2021-06-03T18:48:03Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[{\"subnotes\":[{\"content\":\"Restricted from access.\",\"publish\":true,\"jsonmodel_type\":\"note_text\"}],\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"fc7eb58c00ec8d238c27ca50324f0a5f\",\"label\":\"Conditions Governing Access note\",\"type\":\"accessrestrict\",\"publish\":true}],\"uri\":\"/repositories/2/archival_objects/502960\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502961", + "ancestors": ["/repositories/2/archival_objects/502942", "/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":18,\"publish\":true,\"ref_id\":\"e5064726ee0a402ab1f8900d2f375899\",\"title\":\"Geographic Studies: Asia, C-05.4, Contracts\",\"display_string\":\"Geographic Studies: Asia, C-05.4, Contracts, 1974-1975\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:02:44Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805488\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:44Z\",\"system_mtime\":\"2021-01-28T18:02:44Z\",\"user_mtime\":\"2021-01-28T18:02:44Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974-1975\",\"begin\":\"1974\",\"end\":\"1975\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:44Z\",\"system_mtime\":\"2021-01-28T18:02:44Z\",\"user_mtime\":\"2021-01-28T18:02:44Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502942\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:44Z\",\"system_mtime\":\"2021-01-28T18:02:44Z\",\"user_mtime\":\"2021-01-28T18:02:44Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"121A\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:02:44Z\",\"system_mtime\":\"2021-01-28T18:02:44Z\",\"user_mtime\":\"2021-01-28T18:02:44Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85908\",\"_resolved\":{\"lock_version\":60,\"barcode\":\"A0000000054308\",\"indicator\":\"26\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:04Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:04 UTC\",\"user_mtime\":\"2016-08-13 07:36:04 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"identifier\":\"2\",\"display_string\":\"Administrative\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85908\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/3\",\"_resolved\":{\"lock_version\":3099,\"name\":\"Legal Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"15.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:29:13Z\",\"system_mtime\":\"2022-02-10T17:32:49Z\",\"user_mtime\":\"2019-09-27T15:18:05Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/3\",\"display_string\":\"Legal Document Box [15.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 26: Series 2 [Barcode: A0000000054308]\",\"long_display_string\":\"Box 26 [Barcode: A0000000054308], Legal Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 2\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502961\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502942\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502941": [{ + "id": "/repositories/2/archival_objects/502941", + "uri": "/repositories/2/archival_objects/502941", + "title": "Administrative", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2", + "component_id": "2", + "ref_id": "d126a99bd16642eb8cd2e6679587a104", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:23Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "series", + "external_id": ["1805259"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":1,\"publish\":true,\"ref_id\":\"d126a99bd16642eb8cd2e6679587a104\",\"component_id\":\"2\",\"title\":\"Administrative\",\"display_string\":\"Administrative\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805259\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:23Z\",\"system_mtime\":\"2021-01-28T18:01:23Z\",\"user_mtime\":\"2021-01-28T18:01:23Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502941\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502942": [{ + "id": "/repositories/2/archival_objects/502942", + "uri": "/repositories/2/archival_objects/502942", + "title": "Contracts", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "2.1", + "component_id": "2.1", + "ref_id": "e400f1cfa16844be8498222641fd1ff9", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:25Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:25Z", + "notes": "", + "level": "subseries", + "external_id": ["1805412"], + "ancestors": ["/repositories/2/archival_objects/502941", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"e400f1cfa16844be8498222641fd1ff9\",\"component_id\":\"2.1\",\"title\":\"Contracts\",\"display_string\":\"Contracts\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:25Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805412\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:25Z\",\"system_mtime\":\"2021-01-28T18:01:25Z\",\"user_mtime\":\"2021-01-28T18:01:25Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502941\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502942\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502941\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }], + "facets": { + "facet_queries": {}, + "facet_fields": {}, + "facet_ranges": {}, + "facet_intervals": {}, + "facet_heatmaps": {} + } +} diff --git a/fixtures/unrestricted_search.json b/fixtures/unrestricted_search.json new file mode 100644 index 0000000..d8dd449 --- /dev/null +++ b/fixtures/unrestricted_search.json @@ -0,0 +1,985 @@ +{ + "page_size": 25, + "first_page": 1, + "last_page": 1, + "this_page": 1, + "offset_first": 1, + "offset_last": 8, + "total_hits": 8, + "results": [{ + "uri": "/repositories/2/archival_objects/502926", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":17,\"publish\":true,\"ref_id\":\"2bf1326111d946a2b4f7987576afb0ab\",\"title\":\"Panel VI, Background Papers, Volume 3, Kahn and Omenn\",\"display_string\":\"Panel VI, Background Papers, Volume 3, Kahn and Omenn, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:14Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805523\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:15Z\",\"system_mtime\":\"2021-01-28T18:01:15Z\",\"user_mtime\":\"2021-01-28T18:01:15Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:14Z\",\"system_mtime\":\"2021-01-28T18:01:14Z\",\"user_mtime\":\"2021-01-28T18:01:14Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:14Z\",\"system_mtime\":\"2021-01-28T18:01:14Z\",\"user_mtime\":\"2021-01-28T18:01:14Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"195\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:14Z\",\"system_mtime\":\"2021-01-28T18:01:14Z\",\"user_mtime\":\"2021-01-28T18:01:14Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502926\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502927", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":18,\"publish\":true,\"ref_id\":\"0b7a0a7ffcc3420a8e2db8d5712ba888\",\"title\":\"Panel VI, Background Papers, Volume 3, Weaver and Ball\",\"display_string\":\"Panel VI, Background Papers, Volume 3, Weaver and Ball, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:15Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805522\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:15Z\",\"system_mtime\":\"2021-01-28T18:01:15Z\",\"user_mtime\":\"2021-01-28T18:01:15Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:15Z\",\"system_mtime\":\"2021-01-28T18:01:15Z\",\"user_mtime\":\"2021-01-28T18:01:15Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:15Z\",\"system_mtime\":\"2021-01-28T18:01:15Z\",\"user_mtime\":\"2021-01-28T18:01:15Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"196\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:15Z\",\"system_mtime\":\"2021-01-28T18:01:15Z\",\"user_mtime\":\"2021-01-28T18:01:15Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502927\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502928", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":19,\"publish\":true,\"ref_id\":\"a114cbcd881a4861beb9ff31678a2f70\",\"title\":\"Panel VI, Background Papers, Volume 4\",\"display_string\":\"Panel VI, Background Papers, Volume 4, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805521\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"197\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502928\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502929", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":20,\"publish\":true,\"ref_id\":\"cd429dcaf1d24cc29a78dbe36eecf37a\",\"title\":\"Panel VI, Forty Under Forty\",\"display_string\":\"Panel VI, Forty Under Forty, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805520\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"198\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:16Z\",\"system_mtime\":\"2021-01-28T18:01:16Z\",\"user_mtime\":\"2021-01-28T18:01:16Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502929\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502930", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":21,\"publish\":true,\"ref_id\":\"8a3f5efe5495444ab64d8e694605aadf\",\"title\":\"Panel VI, Papers from Laurance Rockefeller's Forty Under Forty Binder\",\"display_string\":\"Panel VI, Papers from Laurance Rockefeller's Forty Under Forty Binder, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805519\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"199\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502930\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502931", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":22,\"publish\":true,\"ref_id\":\"62302f4a83824141bd17de3126dd2d54\",\"title\":\"Panel VI, Quality of Life of Individuals and Communities in the USA, Notebook of Background Materials\",\"display_string\":\"Panel VI, Quality of Life of Individuals and Communities in the USA, Notebook of Background Materials, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805518\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"200\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:17Z\",\"system_mtime\":\"2021-01-28T18:01:17Z\",\"user_mtime\":\"2021-01-28T18:01:17Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502931\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502932", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":23,\"publish\":true,\"ref_id\":\"b64dbb089b9a4318848df51c9f274c11\",\"title\":\"Panel VI, Quality of Life: Trends, Problems, Objectives and Decisions, Hudson Institute, Draft\",\"display_string\":\"Panel VI, Quality of Life: Trends, Problems, Objectives and Decisions, Hudson Institute, Draft, 1974\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:18Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805517\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:18Z\",\"system_mtime\":\"2021-01-28T18:01:18Z\",\"user_mtime\":\"2021-01-28T18:01:18Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1974\",\"begin\":\"1974\",\"end\":\"1974\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:18Z\",\"system_mtime\":\"2021-01-28T18:01:18Z\",\"user_mtime\":\"2021-01-28T18:01:18Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:18Z\",\"system_mtime\":\"2021-01-28T18:01:18Z\",\"user_mtime\":\"2021-01-28T18:01:18Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"201\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:18Z\",\"system_mtime\":\"2021-01-28T18:01:18Z\",\"user_mtime\":\"2021-01-28T18:01:18Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502932\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }, { + "uri": "/repositories/2/archival_objects/502933", + "ancestors": ["/repositories/2/archival_objects/502908", "/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":24,\"publish\":true,\"ref_id\":\"f4c84757afcc4ef896576aafb8419b06\",\"title\":\"Panel VI, Quality of Life of Individuals and Communities in the USA, Daniel P. Moynihan Report\",\"display_string\":\"Panel VI, Quality of Life of Individuals and Communities in the USA, Daniel P. Moynihan Report, 1975 June\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:24Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:19Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"file\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805516\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:19Z\",\"system_mtime\":\"2021-01-28T18:01:19Z\",\"user_mtime\":\"2021-01-28T18:01:19Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1975 June\",\"begin\":\"1975-06\",\"end\":\"1975-06\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:19Z\",\"system_mtime\":\"2021-01-28T18:01:19Z\",\"user_mtime\":\"2021-01-28T18:01:19Z\",\"date_type\":\"single\",\"label\":\"creation\",\"era\":\"ce\",\"calendar\":\"gregorian\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502908\",\"level\":\"subseries\"},{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[{\"lock_version\":0,\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:19Z\",\"system_mtime\":\"2021-01-28T18:01:19Z\",\"user_mtime\":\"2021-01-28T18:01:19Z\",\"instance_type\":\"mixed materials\",\"jsonmodel_type\":\"instance\",\"is_representative\":false,\"sub_container\":{\"lock_version\":0,\"indicator_2\":\"202\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:19Z\",\"system_mtime\":\"2021-01-28T18:01:19Z\",\"user_mtime\":\"2021-01-28T18:01:19Z\",\"type_2\":\"folder\",\"jsonmodel_type\":\"sub_container\",\"top_container\":{\"ref\":\"/repositories/2/top_containers/85905\",\"_resolved\":{\"lock_version\":33,\"barcode\":\"A0000000054305\",\"indicator\":\"23\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2016-08-13T07:36:03Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2016-08-13T07:36:03Z\",\"type\":\"box\",\"jsonmodel_type\":\"top_container\",\"active_restrictions\":[],\"container_locations\":[{\"jsonmodel_type\":\"container_location\",\"status\":\"current\",\"start_date\":\"2014-12-06\",\"system_mtime\":\"2016-08-13 07:36:03 UTC\",\"user_mtime\":\"2016-08-13 07:36:03 UTC\",\"ref\":\"/locations/3494\"}],\"series\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"identifier\":\"1\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"level_display_string\":\"Series\",\"publish\":true}],\"collection\":[{\"ref\":\"/repositories/2/resources/682\",\"identifier\":\"FA484\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) records\"}],\"uri\":\"/repositories/2/top_containers/85905\",\"repository\":{\"ref\":\"/repositories/2\"},\"container_profile\":{\"ref\":\"/container_profiles/1\",\"_resolved\":{\"lock_version\":15792,\"name\":\"Letter Document Box\",\"extent_dimension\":\"width\",\"height\":\"10.5\",\"width\":\"5\",\"depth\":\"12.5\",\"created_by\":\"pgalligan\",\"last_modified_by\":\"echang\",\"create_time\":\"2016-08-14T15:28:13Z\",\"system_mtime\":\"2022-02-22T16:30:05Z\",\"user_mtime\":\"2019-09-27T15:13:42Z\",\"stacking_limit\":\"1\",\"dimension_units\":\"inches\",\"jsonmodel_type\":\"container_profile\",\"uri\":\"/container_profiles/1\",\"display_string\":\"Letter Document Box [12.5d, 10.5h, 5w inches] extent measured by width\"}},\"restricted\":false,\"is_linked_to_published_record\":true,\"display_string\":\"Box 23: Series 1 [Barcode: A0000000054305]\",\"long_display_string\":\"Box 23 [Barcode: A0000000054305], Letter Document Box, Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 49, Shelf: 3], FA484, Commission on Critical Choices for Americans (CCCA) records, Series 1\"}}}}],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502933\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502908\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": null, + "_resolved_ancestors": { + "/repositories/2/resources/682": [{ + "id": "/repositories/2/resources/682", + "uri": "/repositories/2/resources/682", + "title": "Commission on Critical Choices for Americans (CCCA) records", + "primary_type": "resource", + "types": ["resource", "pui_collection", "pui"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["collection"], + "finding_aid_description_rules_enum_s": ["dacs"], + "finding_aid_language_enum_s": ["eng"], + "finding_aid_script_enum_s": ["Latn"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE"], + "portion_enum_s": ["whole"], + "extent_type_enum_s": ["cubic_feet"], + "language_enum_s": ["eng"], + "date_type_enum_s": ["inclusive", "bulk"], + "label_enum_s": ["creation"], + "relator_enum_s": ["aut"], + "role_enum_s": ["creator"], + "type_enum_s": ["physdesc", "accessrestrict", "arrangement", "processinfo", "acqinfo", "userestrict", "bioghist", "scopecontent"], + "processing_status_enum_s": ["completed"], + "enum_1_enum_s": ["3 - Standard"], + "agents": ["Commission on Critical Choices for Americans"], + "agents_text": ["Commission on Critical Choices for Americans"], + "agent_uris": ["/agents/corporate_entities/805"], + "published_agents": ["Commission on Critical Choices for Americans"], + "published_agent_uris": ["/agents/corporate_entities/805"], + "creators": ["Commission on Critical Choices for Americans"], + "creators_text": ["Commission on Critical Choices for Americans"], + "_agents_corporate_entities_805_relator_sort": "creator Author", + "created_by": "admin", + "last_modified_by": "battalb", + "user_mtime": "2022-02-22T16:27:25Z", + "system_mtime": "2022-07-05T19:23:07Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "84b0d3545dff679c7f26e3bc09723d47 physdesc 56 document boxes. 0440d1722d939fba4d03eb7459e27308 accessrestrict Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist. 6db25028bd2837a0c2070e17f79e350d arrangement The collection is arranged as follows:\n\nSeries 1: CCCA Meetings.\nSubseries 1.1: Transcripts.\nSubseries 1.2: Background materials.\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\n\nSeries 2: Administrative.\nSubseries 2.1: Contracts.\nSubseries 2.2: Corporate Matters.\nSubseries 2.3: Fundraising.\nSubseries 2.4: Publication records.\n\nSeries 3: Financial and Personnel records.\nSubseries 3.1: Financial records.\nSubseries 3.2: Personnel records.\n\nSeries 4: Correspondence. 8d39b014412b1c5e00e7336686c509d9 processinfo The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\n\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\n\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research. a4602fff6e3e308400d09ac188c82a45 acqinfo Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \n\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004. 3fac71dff5fce0b270d462075c1bcadc userestrict Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection. 18fa542a6ea85e14fc24493db4dc1f1b bioghist In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \n\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \n\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \n\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \n\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \n\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. 3c3053a3890ff2fbb67d34dcdf93b17a scopecontent The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "dates": ["Bulk, 1973-1975 1969-1978"], + "level": "collection", + "summary": "The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.", + "extents": ["24.39 --- cubic_feet"], + "finding_aid_title": "A Guide to the Commission on Critical Choices for Americans (CCCA) records", + "finding_aid_filing_title": "Commission on Critical Choices for Americans (CCCA) records", + "identifier": "FA484", + "restrictions": "true", + "ead_id": "FA484.xml", + "related_accession_uris": ["/repositories/2/accessions/542", "/repositories/2/accessions/238", "/repositories/2/accessions/271"], + "is_slug_auto": false, + "external_id": ["20502"], + "four_part_id": "FA484", + "langcode": ["eng"], + "json": "{\"lock_version\":16,\"title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"publish\":true,\"restrictions\":true,\"ead_id\":\"FA484.xml\",\"finding_aid_title\":\"A Guide to the Commission on Critical Choices for Americans (CCCA) records\\n\",\"finding_aid_filing_title\":\"Commission on Critical Choices for Americans (CCCA) records\",\"finding_aid_language_note\":\"English\",\"created_by\":\"admin\",\"last_modified_by\":\"battalb\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-02-22T16:27:25Z\",\"suppressed\":false,\"is_slug_auto\":false,\"id_0\":\"FA484\",\"level\":\"collection\",\"finding_aid_description_rules\":\"dacs\",\"finding_aid_language\":\"eng\",\"finding_aid_script\":\"Latn\",\"jsonmodel_type\":\"resource\",\"external_ids\":[{\"external_id\":\"20502\",\"source\":\"Archivists Toolkit Database::RESOURCE\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"24.39\",\"container_summary\":\"56 document boxes, 1 record storage box.\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"jsonmodel_type\":\"lang_material\",\"notes\":[],\"language_and_script\":{\"lock_version\":0,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"language\":\"eng\",\"jsonmodel_type\":\"language_and_script\"}}],\"dates\":[{\"lock_version\":0,\"expression\":\"Bulk, 1973-1975 1969-1978\",\"begin\":\"1969\",\"end\":\"1978\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"},{\"lock_version\":0,\"begin\":\"1973\",\"end\":\"1975\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"date_type\":\"bulk\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[{\"role\":\"creator\",\"relator\":\"aut\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\",\"_resolved\":{\"lock_version\":38,\"publish\":true,\"created_by\":\"admin\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2014-12-06T02:46:12Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:02Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"Commission on Critical Choices for Americans\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q55608157\",\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:07Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2022-07-05T19:23:07Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/805\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Commission on Critical Choices for Americans\",\"sort_name\":\"Commission on Critical Choices for Americans\",\"sort_name_auto_generate\":true,\"created_by\":\"dyoung\",\"last_modified_by\":\"dyoung\",\"create_time\":\"2022-07-05T19:23:06Z\",\"system_mtime\":\"2022-07-05T19:23:06Z\",\"user_mtime\":\"2022-07-05T19:23:06Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"naf\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Commission on Critical Choices for Americans\"}}],\"revision_statements\":[],\"instances\":[],\"deaccessions\":[],\"related_accessions\":[{\"ref\":\"/repositories/2/accessions/542\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"18 boxes\\n\\nCorrespondence, drafts, memoranda generated in connection with work of Commission on Critical Choices for Americans\",\"general_note\":\"Insufficient box information. Unable to attach location.\",\"accession_date\":\"1985-01-07\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"is_slug_auto\":false,\"id_0\":\"1985\",\"id_1\":\"004\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4805\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"21.6\",\"container_summary\":\"18 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/542\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV2B21\",\"date_1\":\"1985-01-04\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:43Z\",\"system_mtime\":\"2014-12-06T03:09:43Z\",\"user_mtime\":\"2014-12-06T03:09:43Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/238\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\",\"display_string\":\"Commission on Critical Choices for Americans records\",\"publish\":true,\"content_description\":\"21 boxes total\\n\\n18 boxes of books and 3 box of supporting documentation (1973-4)\\n\\nMaterial arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\",\"general_note\":\"Material arrived in 18 standard record storage boxes and 2 transfile boxes. The material in the transfile boxes were rehoused into 3 standard record storage boxes.\\n\\nInsufficient box information. Unable to attach location.\",\"accession_date\":\"1983-03-24\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2022-07-05T19:23:07Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"025\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4576\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"25.2\",\"container_summary\":\"18 standard record storage boxes and 2 transfiles\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[{\"lock_version\":0,\"expression\":\"1973-1974\",\"begin\":\"1973\",\"end\":\"1974\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"date_type\":\"inclusive\",\"label\":\"creation\",\"jsonmodel_type\":\"date\"}],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[{\"role\":\"source\",\"relator\":\"dpt\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"source\",\"relator\":\"own\",\"terms\":[],\"ref\":\"/agents/corporate_entities/3535\"},{\"role\":\"creator\",\"terms\":[],\"ref\":\"/agents/corporate_entities/805\"}],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/238\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"JIC\",\"date_1\":\"1983-03-24\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:08:59Z\",\"system_mtime\":\"2014-12-06T03:08:59Z\",\"user_mtime\":\"2014-12-06T03:08:59Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}},{\"ref\":\"/repositories/2/accessions/271\",\"_resolved\":{\"lock_version\":17,\"suppressed\":false,\"title\":\"Commission on Critical Choices for Americans records\\n\",\"display_string\":\"Commission on Critical Choices for Americans records\\n\",\"publish\":true,\"content_description\":\"Files of NAR Critical Choices for Americans, 1974.\\nRoutine administrative and financial material and research materials and position papers. \",\"general_note\":\"Insufficient box information. Unable to attach location.\\n\",\"accession_date\":\"1983-08-18\",\"restrictions_apply\":false,\"access_restrictions\":false,\"use_restrictions\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"is_slug_auto\":false,\"id_0\":\"1983\",\"id_1\":\"058\",\"acquisition_type\":\"deposit\",\"resource_type\":\"records\",\"jsonmodel_type\":\"accession\",\"external_ids\":[{\"external_id\":\"4770\",\"source\":\"Archivists Toolkit Database::ACCESSION\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"external_id\"}],\"related_accessions\":[],\"classifications\":[],\"subjects\":[],\"linked_events\":[],\"extents\":[{\"lock_version\":0,\"number\":\"10.8\",\"container_summary\":\"9 standard record storage boxes\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"portion\":\"whole\",\"extent_type\":\"cubic_feet\",\"jsonmodel_type\":\"extent\"}],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"deaccessions\":[],\"related_resources\":[{\"ref\":\"/repositories/2/resources/682\"}],\"linked_agents\":[],\"instances\":[],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/accessions/271\",\"repository\":{\"ref\":\"/repositories/2\"},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"string_1\":\"TER\",\"string_2\":\"IV3B29\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T03:09:04Z\",\"system_mtime\":\"2014-12-06T03:09:04Z\",\"user_mtime\":\"2014-12-06T03:09:04Z\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\"}}}}],\"classifications\":[],\"notes\":[{\"jsonmodel_type\":\"note_singlepart\",\"persistent_id\":\"84b0d3545dff679c7f26e3bc09723d47\",\"type\":\"physdesc\",\"content\":[\"56 document boxes.\"],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"0440d1722d939fba4d03eb7459e27308\",\"type\":\"accessrestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Open for research with select materials restricted as noted. Brittle or damaged items are available at the discretion of RAC. Researchers interested in accessing digital media (floppy disks, CDs, DVDs, etc.) or audiovisual material (audio cassettes, VHS, etc.) in this collection must use an access surrogate. The original items may not be accessed because of preservation concerns. To request an access surrogate be made, or if you are unsure if there is an access surrogate, please contact an archivist.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"6db25028bd2837a0c2070e17f79e350d\",\"type\":\"arrangement\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection is arranged as follows:\\n\\nSeries 1: CCCA Meetings.\\nSubseries 1.1: Transcripts.\\nSubseries 1.2: Background materials.\\nSubseries 1.3: Laurance S. Rockefeller's CCCA materials.\\n\\nSeries 2: Administrative.\\nSubseries 2.1: Contracts.\\nSubseries 2.2: Corporate Matters.\\nSubseries 2.3: Fundraising.\\nSubseries 2.4: Publication records.\\n\\nSeries 3: Financial and Personnel records.\\nSubseries 3.1: Financial records.\\nSubseries 3.2: Personnel records.\\n\\nSeries 4: Correspondence.\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"8d39b014412b1c5e00e7336686c509d9\",\"type\":\"processinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The CCCA collection received standard processing in 2012, through the RAC Summer Intern program.\\n\\nThe finding aid was initially prepared in 2012 during the course of processing, and was subsequently imported into the RAC collection management system and made available online in 2014. Front matter was compiled in 2014 by Robert Battaly, RAC Head of Processing.\\n\\nThe accompanying Audio recordings will be processed at a later date. This finding aid will be updated when the audio is available for research.\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"a4602fff6e3e308400d09ac188c82a45\",\"type\":\"acqinfo\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Upon its dissolution, the Third Century Corporation transferred all its net assets, including this archival collection, to the Rockefeller Archive Center. \\n\\nThe initial shipment of 30 storage boxes (36 cubic feet) was received by the Rockefeller Family archives in 1977 (recorded by the Family archives as accession 1977:009). Rockefeller Archive Center documentation indicates transfer of the collection in several accessions including accession 1983:025 (3.6 cu. ft.); 1983:058 and 1985:004.\\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3fac71dff5fce0b270d462075c1bcadc\",\"type\":\"userestrict\",\"rights_restriction\":{\"local_access_restriction_type\":[]},\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"Rockefeller Archive Center holds title, copyright and literary rights in the collection, in so far as it holds them, and has authority to grant permission to cite and publish archival material from the collection.\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"18fa542a6ea85e14fc24493db4dc1f1b\",\"type\":\"bioghist\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"In November 1973, Nelson A. Rockefeller worked with former Delaware Governor Russell W. Peterson to establish the Commission on Critical Choices for Americans, and served as its chairman until December 1974. In December 1973, Rockefeller resigned as Governor of New York, in part to devote his efforts towards the Commission. \\n\\nThe Commission was a private study project on national and international policy similar to that of the Special Studies Project, directed by Henry Kissinger, and funded by the Rockefeller Brothers Fund while Nelson Rockefeller was President of the Fund from 1956-1960. \\n\\nThe Commission on Critical Choices for Americans was made up of a nationally representative, bipartisan group of 42 prominent Americans drawn from far-ranging fields of interest who served on a voluntary basis. Members included the majority and minority leaders of both houses of Congress. \\n\\nThe Commission gathered information to investigate and understand many of the challenges facing America, and published monographs, essays, studies, and research papers which identified the \u201ccritical choices\u201d to be made and recommended possible solutions. \\n\\nIn August 1974, nine months after establishing the Commission, Nelson A. Rockefeller was nominated to serve as Vice President of the United States, and he was officially inaugurated as such on December 19, 1974. \\n\\nRockefeller\u2019s lack of direct involvement had a profound impact on the work and effectiveness of the Commission. Each of the panels had planned to refine and expand the background studies, but instead the Commission chose to publish the background studies themselves. \\n\\n\\n\",\"publish\":true}],\"publish\":true},{\"jsonmodel_type\":\"note_multipart\",\"persistent_id\":\"3c3053a3890ff2fbb67d34dcdf93b17a\",\"type\":\"scopecontent\",\"subnotes\":[{\"jsonmodel_type\":\"note_text\",\"content\":\"The collection includes general files, panel transcripts, meeting records, background papers, fundraising and contribution files, personnel files, contracts, audio tapes and financial records.\",\"publish\":true}],\"publish\":true}],\"metadata_rights_declarations\":[],\"uri\":\"/repositories/2/resources/682\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"collection_management\":{\"lock_version\":0,\"rights_determined\":false,\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"processing_status\":\"completed\",\"jsonmodel_type\":\"collection_management\",\"external_ids\":[],\"uri\":\"/repositories/2/collection_management/22163\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"parent\":{\"ref\":\"/repositories/2/resources/682\"}},\"user_defined\":{\"lock_version\":0,\"boolean_1\":false,\"boolean_2\":false,\"boolean_3\":false,\"date_2\":\"2016-07-29\",\"created_by\":\"battalb\",\"last_modified_by\":\"battalb\",\"create_time\":\"2022-02-22T16:27:26Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2022-02-22T16:27:26Z\",\"enum_1\":\"3 - Standard\",\"jsonmodel_type\":\"user_defined\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1604,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"aberish\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:10:51Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/40\"},{\"number\":\"914-631-6017\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/41\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[{\"primary_identifier\":false,\"record_identifier\":\"Q30268613\",\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:02Z\",\"system_mtime\":\"2022-06-22T18:11:02Z\",\"user_mtime\":\"2022-06-22T18:11:02Z\",\"lock_version\":0,\"source\":\"wikidata\",\"jsonmodel_type\":\"agent_record_identifier\"}],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"aberish\",\"last_modified_by\":\"aberish\",\"create_time\":\"2022-06-22T18:11:00Z\",\"system_mtime\":\"2022-06-22T18:11:00Z\",\"user_mtime\":\"2022-06-22T18:11:00Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}}},\"tree\":{\"ref\":\"/repositories/2/resources/682/tree\"}}", + "jsonmodel_type": "resource" + }], + "/repositories/2/archival_objects/502908": [{ + "id": "/repositories/2/archival_objects/502908", + "uri": "/repositories/2/archival_objects/502908", + "title": "Laurance S. Rockefeller's CCCA materials", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["subseries", "series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1.3", + "component_id": "1.3", + "ref_id": "147eef8792cc4876a6fb8e0affff95c3", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T18:01:04Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:23Z", + "notes": "", + "level": "subseries", + "external_id": ["1805508"], + "ancestors": ["/repositories/2/archival_objects/502728", "/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":2,\"publish\":true,\"ref_id\":\"147eef8792cc4876a6fb8e0affff95c3\",\"component_id\":\"1.3\",\"title\":\"Laurance S. Rockefeller's CCCA materials\",\"display_string\":\"Laurance S. Rockefeller's CCCA materials\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:23Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"subseries\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805508\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T18:01:04Z\",\"system_mtime\":\"2021-01-28T18:01:04Z\",\"user_mtime\":\"2021-01-28T18:01:04Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/archival_objects/502728\",\"level\":\"series\"},{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502908\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"parent\":{\"ref\":\"/repositories/2/archival_objects/502728\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }], + "/repositories/2/archival_objects/502728": [{ + "id": "/repositories/2/archival_objects/502728", + "uri": "/repositories/2/archival_objects/502728", + "title": "Commission on Critical Choices for Americans (CCCA) Meetings", + "primary_type": "archival_object", + "types": ["archival_object"], + "suppressed": false, + "publish": true, + "system_generated": false, + "repository": "/repositories/2", + "level_enum_s": ["series", "collection"], + "source_enum_s": ["Archivists Toolkit Database::RESOURCE_COMPONENT"], + "resource": "/repositories/2/resources/682", + "identifier": "1", + "component_id": "1", + "ref_id": "78be34c53a5c4850a3879c67daa7e164", + "is_slug_auto": false, + "created_by": "admin", + "last_modified_by": "k.martin", + "user_mtime": "2021-01-28T17:59:11Z", + "system_mtime": "2022-02-22T16:27:26Z", + "create_time": "2014-12-06T13:46:14Z", + "notes": "", + "level": "series", + "external_id": ["1805507"], + "ancestors": ["/repositories/2/resources/682"], + "json": "{\"lock_version\":3,\"position\":0,\"publish\":true,\"ref_id\":\"78be34c53a5c4850a3879c67daa7e164\",\"component_id\":\"1\",\"title\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"display_string\":\"Commission on Critical Choices for Americans (CCCA) Meetings\",\"restrictions_apply\":false,\"created_by\":\"admin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2014-12-06T13:46:14Z\",\"system_mtime\":\"2022-02-22T16:27:26Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"suppressed\":false,\"is_slug_auto\":false,\"level\":\"series\",\"jsonmodel_type\":\"archival_object\",\"external_ids\":[{\"external_id\":\"1805507\",\"source\":\"Archivists Toolkit Database::RESOURCE_COMPONENT\",\"created_by\":\"k.martin\",\"last_modified_by\":\"k.martin\",\"create_time\":\"2021-01-28T17:59:11Z\",\"system_mtime\":\"2021-01-28T17:59:11Z\",\"user_mtime\":\"2021-01-28T17:59:11Z\",\"jsonmodel_type\":\"external_id\"}],\"subjects\":[],\"linked_events\":[],\"extents\":[],\"lang_materials\":[],\"dates\":[],\"external_documents\":[],\"rights_statements\":[],\"linked_agents\":[],\"ancestors\":[{\"ref\":\"/repositories/2/resources/682\",\"level\":\"collection\"}],\"instances\":[],\"notes\":[],\"uri\":\"/repositories/2/archival_objects/502728\",\"repository\":{\"ref\":\"/repositories/2\",\"_resolved\":{\"lock_version\":1,\"repo_code\":\"RAC\",\"name\":\"Rockefeller Archive Center\",\"org_code\":\"NNttR\",\"url\":\"http://www.rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"publish\":true,\"oai_is_disabled\":false,\"oai_sets_available\":\"[\\\"890\\\",\\\"891\\\",\\\"892\\\",\\\"893\\\",\\\"894\\\",\\\"895\\\",\\\"896\\\",\\\"897\\\",\\\"898\\\",\\\"899\\\",\\\"900\\\"]\",\"slug\":\"rac\",\"is_slug_auto\":true,\"jsonmodel_type\":\"repository\",\"uri\":\"/repositories/2\",\"display_string\":\"Rockefeller Archive Center (RAC)\",\"agent_representation\":{\"ref\":\"/agents/corporate_entities/1\",\"_resolved\":{\"lock_version\":1590,\"publish\":false,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2014-12-06T02:20:25Z\",\"system_mtime\":\"2022-02-14T14:37:32Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"is_slug_auto\":false,\"jsonmodel_type\":\"agent_corporate_entity\",\"agent_contacts\":[{\"lock_version\":0,\"name\":\"RAC\",\"address_1\":\"15 Dayton Avenue\",\"city\":\"Sleepy Hollow\",\"country\":\"U.S.A.\",\"post_code\":\"10591\",\"email\":\"archive@rockarch.org\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"agent_contact\",\"telephones\":[{\"number\":\"914-631-4505\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/24\"},{\"number\":\"914-631-6017\",\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:39Z\",\"system_mtime\":\"2018-12-20T15:00:39Z\",\"user_mtime\":\"2018-12-20T15:00:39Z\",\"number_type\":\"fax\",\"jsonmodel_type\":\"telephone\",\"uri\":\"/telephone/25\"}],\"notes\":[],\"is_representative\":false}],\"agent_record_controls\":[],\"agent_alternate_sets\":[],\"agent_conventions_declarations\":[],\"agent_other_agency_codes\":[],\"agent_maintenance_histories\":[],\"agent_record_identifiers\":[],\"agent_identifiers\":[],\"agent_sources\":[],\"agent_places\":[],\"agent_occupations\":[],\"agent_functions\":[],\"agent_topics\":[],\"agent_resources\":[],\"linked_agent_roles\":[\"creator\",\"source\",\"subject\"],\"external_documents\":[],\"notes\":[],\"used_within_repositories\":[],\"used_within_published_repositories\":[],\"dates_of_existence\":[],\"used_languages\":[],\"metadata_rights_declarations\":[],\"names\":[{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]}],\"related_agents\":[],\"uri\":\"/agents/corporate_entities/1\",\"agent_type\":\"agent_corporate_entity\",\"is_linked_to_published_record\":true,\"display_name\":{\"lock_version\":0,\"primary_name\":\"Rockefeller Archive Center\",\"sort_name\":\"Rockefeller Archive Center\",\"sort_name_auto_generate\":true,\"created_by\":\"admin\",\"last_modified_by\":\"admin\",\"create_time\":\"2018-12-20T15:00:38Z\",\"system_mtime\":\"2018-12-20T15:00:38Z\",\"user_mtime\":\"2018-12-20T15:00:38Z\",\"authorized\":true,\"is_display_name\":true,\"jurisdiction\":false,\"conference_meeting\":false,\"source\":\"local\",\"jsonmodel_type\":\"name_corporate_entity\",\"use_dates\":[],\"parallel_names\":[]},\"title\":\"Rockefeller Archive Center\",\"is_repo_agent\":\"Rockefeller Archive Center\"}}}},\"resource\":{\"ref\":\"/repositories/2/resources/682\"},\"has_unpublished_ancestor\":false}", + "jsonmodel_type": "archival_object" + }] + } + }], + "facets": { + "facet_queries": {}, + "facet_fields": {}, + "facet_ranges": {}, + "facet_intervals": {}, + "facet_heatmaps": {} + } +} diff --git a/process_request/helpers.py b/process_request/helpers.py index 7de2271..81d9c05 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -188,7 +188,6 @@ def get_restricted_in_container(container_uri, client): this_page += 1 if this_page > items_in_container["last_page"]: more = False - print(restricted) return ", ".join(restricted) diff --git a/process_request/routines.py b/process_request/routines.py index b7d020c..8a348dc 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -1,8 +1,7 @@ from asnake.aspace import ASpace +from django.conf import settings from django.core.mail import send_mail -from request_broker import settings - from .helpers import (get_container_indicators, get_dates, get_parent_title, get_preferred_format, get_resource_creators, get_restricted_in_container, get_rights_info, get_size, diff --git a/process_request/tests.py b/process_request/tests.py index bc8903a..275a8a5 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -5,19 +5,19 @@ import vcr from asnake.aspace import ASpace +from django.conf import settings from django.core import mail from django.http import StreamingHttpResponse -from django.test import TestCase +from django.test import TestCase, override_settings from django.urls import reverse from rest_framework.test import APIRequestFactory -from request_broker import settings - from .helpers import (get_container_indicators, get_dates, get_file_versions, get_instance_data, get_locations, get_parent_title, get_preferred_format, get_resource_creators, - get_rights_info, get_rights_status, get_rights_text, - get_size, indicator_to_integer, prepare_values) + get_restricted_in_container, get_rights_info, + get_rights_status, get_rights_text, get_size, + indicator_to_integer, prepare_values) from .models import User from .routines import AeonRequester, Mailer, Processor from .test_helpers import json_from_fixture, random_list, random_string @@ -216,6 +216,15 @@ def test_indicator_to_integer(self): parsed = indicator_to_integer(indicator) self.assertEqual(parsed, expected_parsed) + @patch("asnake.client.web_client.ASnakeClient") + def test_get_restricted_in_container(self, mock_client): + for fixture, expected in [ + ("unrestricted_search.json", ""), + ("restricted_search.json", "Folder 122A, Folder 117A.1, Folder 118A.1, Folder 121A.1, Folder 123A.1, Folder 119A, Folder 120A.1")]: + mock_client.get.return_value.json.return_value = json_from_fixture(fixture) + result = get_restricted_in_container("/repositories/2/top_container/1", mock_client) + self.assertEqual(result, expected) + # Test is commented out as the code is currently not used, and this allows us to shed a few configs # def test_aeon_client(self): # baseurl = random_string(20) @@ -272,6 +281,7 @@ def test_deliver_email(self, mock_get_data): self.assertNotIn("barcode", mail.outbox[0].body) @aspace_vcr.use_cassette("aspace_request.json") + @override_settings(RESTRICTED_IN_CONTAINER=False) def test_get_data(self): get_as_data = Processor().get_data(["/repositories/2/archival_objects/1134638"], "https://dimes.rockarch.org") self.assertTrue(isinstance(get_as_data, list)) From cc12aa1e1be93178367d7712e7c35710820a4da8 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 26 Jul 2022 15:06:37 -0400 Subject: [PATCH 19/59] add to ItemInfo5 --- process_request/routines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_request/routines.py b/process_request/routines.py index 8a348dc..1e3f55b 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -270,7 +270,6 @@ def parse_items(self, items, description=""): for i in items: request_prefix = i["uri"].split("/")[-1] parsed["Request"].append(request_prefix) - # TODO: add restricted_in_container parsed.update({ "CallNumber_{}".format(request_prefix): i["resource_id"], "GroupingField_{}".format(request_prefix): i["preferred_instance"]["uri"], @@ -281,6 +280,7 @@ def parse_items(self, items, description=""): "ItemInfo2_{}".format(request_prefix): "" if i["restrictions"] == "open" else i["restrictions_text"], "ItemInfo3_{}".format(request_prefix): i["uri"], "ItemInfo4_{}".format(request_prefix): description, + "ItemInfo5_{}".format(request_prefix): i["restricted_in_container"], "ItemNumber_{}".format(request_prefix): i["preferred_instance"]["barcode"], "ItemSubtitle_{}".format(request_prefix): i["parent"], "ItemTitle_{}".format(request_prefix): i["collection_name"], From 294b9d5b27a08ce44d68e132eea6366e21f3db86 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 26 Jul 2022 15:09:44 -0400 Subject: [PATCH 20/59] add format check --- process_request/routines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_request/routines.py b/process_request/routines.py index 1e3f55b..69cf02e 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -49,7 +49,7 @@ def get_data(self, uri_list, dimes_baseurl): "creators": get_resource_creators(item_collection), "restrictions": restrictions, "restrictions_text": restrictions_text, - "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri) else None, + "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri and format not in ["digital", "microform"]) else None, "collection_name": item_collection.get("title"), "parent": parent, "dates": get_dates(item_json, aspace.client), From 220f645870d7302f905ef9ff8e2c9d0d774ba1bf Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 26 Jul 2022 15:16:43 -0400 Subject: [PATCH 21/59] update fixture --- fixtures/as_data.json | 1 + 1 file changed, 1 insertion(+) diff --git a/fixtures/as_data.json b/fixtures/as_data.json index 8449b19..638b733 100644 --- a/fixtures/as_data.json +++ b/fixtures/as_data.json @@ -18,5 +18,6 @@ "title": "Adler, Mortimer J.", "restrictions": "closed", "restrictions_text": "Closed until further notice due to personally identifying information.", + "restricted_in_container": null, "uri": "/repositories/2/archival_objects/986296" } From e2ee56fc63ec90cf5ee4a82292274d780d243b76 Mon Sep 17 00:00:00 2001 From: helrond Date: Mon, 1 Aug 2022 00:25:11 +0000 Subject: [PATCH 22/59] Dependency updates --- requirements.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index a0339d8..b5525d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ archivessnake==0.9.1 # via -r requirements.in asgiref==3.5.2 # via django -attrs==21.4.0 +attrs==22.1.0 # via archivessnake boltons==21.0.0 # via archivessnake @@ -29,9 +29,9 @@ idna==3.3 # via # requests # yarl -inflect==5.6.0 +inflect==5.6.2 # via -r requirements.in -jarowinkler==1.1.0 +jarowinkler==1.2.0 # via rapidfuzz more-itertools==8.13.0 # via archivessnake @@ -47,7 +47,7 @@ pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.1.2 +rapidfuzz==2.4.2 # via archivessnake requests==2.28.1 # via @@ -59,9 +59,9 @@ six==1.16.0 # via vcrpy sqlparse==0.4.2 # via django -structlog==21.5.0 +structlog==22.1.0 # via archivessnake -urllib3==1.26.9 +urllib3==1.26.11 # via requests vcrpy==4.2.0 # via -r requirements.in From 2ae2ad2e822122461fbd41aeed8611dcf91dcaa6 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 3 Aug 2022 15:05:31 -0400 Subject: [PATCH 23/59] add offsite buildings config --- request_broker/config.py.deploy | 1 + request_broker/config.py.example | 1 + request_broker/settings.py | 2 ++ 3 files changed, 4 insertions(+) diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy index b80052f..59bdbb4 100644 --- a/request_broker/config.py.deploy +++ b/request_broker/config.py.deploy @@ -20,3 +20,4 @@ EMAIL_USE_TLS = ${EMAIL_USE_TLS} EMAIL_USE_SSL = ${EMAIL_USE_SSL} DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" DIMES_HOSTNAME = "${DIMES_HOSTNAME}" +OFFSITE_BUILDINGS = ${OFFSITE_BUILDINGS} diff --git a/request_broker/config.py.example b/request_broker/config.py.example index d47060e..186eb94 100644 --- a/request_broker/config.py.example +++ b/request_broker/config.py.example @@ -20,3 +20,4 @@ EMAIL_USE_TLS = 1 # Use TLS connection for email (1 for True, 0 for False) EMAIL_USE_SSL = 0 # Use SSL connection for email (1 for True, 0 for False) DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sender DIMES_HOSTNAME = "dimes.rockarch.org" # Hostname for DIMES application +OFFSITE_BUILDINGS = ["Armonk", "Greenrock"] # Names of offsite buildings, which will be added to locations (list of strings) diff --git a/request_broker/settings.py b/request_broker/settings.py index 6a61e1b..d2e6561 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -162,3 +162,5 @@ ("size", "Size"), ("collection_name", "Collection Name"), ("parent", "Parent Collection Name")] + +OFFSITE_BUILDINGS = getattr(config, 'OFFSITE_BUILDINGS', []) From 45cc1cbaf95ffbbf67d4b1ec725a30aa994b50cc Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 3 Aug 2022 15:05:58 -0400 Subject: [PATCH 24/59] return building for offsite requests only --- fixtures/locations.json | 1 + fixtures/locations_offsite.json | 16 ++++++++++++++++ process_request/helpers.py | 13 +++++++++---- process_request/tests.py | 9 +++++---- 4 files changed, 31 insertions(+), 8 deletions(-) create mode 100644 fixtures/locations_offsite.json diff --git a/fixtures/locations.json b/fixtures/locations.json index d2cdaa9..5b2fded 100644 --- a/fixtures/locations.json +++ b/fixtures/locations.json @@ -5,6 +5,7 @@ "container_locations": [ { "_resolved": { + "building": "Rockefeller Archive Center", "title": "Rockefeller Archive Center, Blue Level, Vault 106 [Unit: 66, Shelf: 7]", "room": "Vault 106", "coordinate_1_indicator": "66", diff --git a/fixtures/locations_offsite.json b/fixtures/locations_offsite.json new file mode 100644 index 0000000..8b1e57a --- /dev/null +++ b/fixtures/locations_offsite.json @@ -0,0 +1,16 @@ +{ + "type": "box", + "indicator": "2", + "barcode": "A12345", + "container_locations": [ + { + "_resolved": { + "building": "Armonk", + "title": "Armonk, Vault 1 [Unit: 66, Shelf: 7]", + "room": "Vault 1", + "coordinate_1_indicator": "66", + "coordinate_2_indicator": "7" + } + } + ] +} diff --git a/process_request/helpers.py b/process_request/helpers.py index 5da566b..3b77b03 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -3,6 +3,7 @@ import inflect import shortuuid from asnake.utils import get_date_display, get_note_text, text_in_note +from django.conf import settings from ordered_set import OrderedSet CONFIDENCE_RATIO = 97 # Minimum confidence ratio to match against. @@ -50,6 +51,8 @@ def get_file_versions(digital_object): def get_locations(top_container_info): """Gets a string representation of a location for an ArchivesSpace top container. + Adds the building name for offsite locations only. + Args: top_container_info (dict): json for a top container (with resolved container locations) @@ -58,10 +61,12 @@ def get_locations(top_container_info): """ def make_short_location(loc_data): - return ".".join([ - loc_data.get("room", "").strip().replace("Vault ", ""), - loc_data.get("coordinate_1_indicator", "").strip(), - loc_data.get("coordinate_2_indicator", "").strip()]) + location_list = [loc_data.get("room", "").strip().replace("Vault ", ""), + loc_data.get("coordinate_1_indicator", "").strip(), + loc_data.get("coordinate_2_indicator", "").strip()] + if loc_data.get("building") in settings.OFFSITE_BUILDINGS: + location_list.insert(0, loc_data["building"]) + return ".".join(location_list) locations = None if top_container_info.get("container_locations"): diff --git a/process_request/tests.py b/process_request/tests.py index bc8903a..e37f2d8 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -7,7 +7,7 @@ from asnake.aspace import ASpace from django.core import mail from django.http import StreamingHttpResponse -from django.test import TestCase +from django.test import TestCase, override_settings from django.urls import reverse from rest_framework.test import APIRequestFactory @@ -99,10 +99,11 @@ def test_get_file_versions(self): digital_object = {'file_versions': [{'file_uri': uri}]} self.assertEqual(get_file_versions(digital_object), uri) + @override_settings(OFFSITE_BUILDINGS=["Armonk"]) def test_get_locations(self): - obj_data = json_from_fixture("locations.json") - expected_location = "106.66.7" - self.assertEqual(get_locations(obj_data), expected_location) + for fixture, expected in [("locations.json", "106.66.7"), ("locations_offsite.json", "Armonk.1.66.7")]: + obj_data = json_from_fixture(fixture) + self.assertEqual(get_locations(obj_data), expected) def test_get_instance_data(self): obj_data = json_from_fixture("digital_object_instance.json") From 378009526523b73083f04164374debd15ad446ed Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 4 Aug 2022 17:29:30 -0400 Subject: [PATCH 25/59] handle cases where item is missing --- process_request/routines.py | 6 ++++-- process_request/tests.py | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/process_request/routines.py b/process_request/routines.py index cf91cc8..1dfa7d4 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -108,8 +108,10 @@ def parse_item(self, uri, baseurl): Returns: parsed (dict): A dicts containing parsed item information. """ - data = self.get_data([uri], baseurl)[0] - submit, reason = self.is_submittable(data) + data = self.get_data([uri], baseurl) + if not len(data): + return {"uri": uri, "submit": False, "submit_reason": "This item is currently unavailable for request. It will not be included in request. Reason: This item cannot be found."} + submit, reason = self.is_submittable(data[0]) return {"uri": uri, "submit": submit, "submit_reason": reason} diff --git a/process_request/tests.py b/process_request/tests.py index e37f2d8..2b8d35b 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -257,6 +257,11 @@ def test_parse_item(self, mock_get_data): self.assertEqual(parsed["submit"], False) self.assertEqual(parsed["submit_reason"], "This item is currently unavailable for request. It will not be included in request. Reason: Required information about the physical container of this item is not available.") + mock_get_data.return_value = [] + parsed = Processor().parse_item(item["uri"], "https://dimes.rockarch.org") + self.assertEqual(parsed["submit"], False) + self.assertEqual(parsed["submit_reason"], "This item is currently unavailable for request. It will not be included in request. Reason: This item cannot be found.") + @patch("process_request.routines.Processor.get_data") def test_deliver_email(self, mock_get_data): mock_get_data.return_value = [json_from_fixture("as_data.json")] From ea7c2a67fbd09e0f2678931c13a71e3bd7be854d Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 8 Aug 2022 09:53:38 -0400 Subject: [PATCH 26/59] add grouping option --- process_request/routines.py | 1 + 1 file changed, 1 insertion(+) diff --git a/process_request/routines.py b/process_request/routines.py index f2c5845..899518e 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -187,6 +187,7 @@ def __init__(self): "GroupingOption_ItemCitation": "FirstValue", "GroupingOption_ItemNumber": "FirstValue", "GroupingOption_Location": "FirstValue", + "GroupingOption_ItemInfo5": "FirstValue", "UserReview": "No", "SubmitButton": "Submit Request", } From b256a998557620af2546cddc5ca6834fa9a9c916 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 8 Aug 2022 10:51:49 -0400 Subject: [PATCH 27/59] use repository search endpoint --- process_request/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index ac3ca50..3fb7ee4 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -175,7 +175,7 @@ def get_restricted_in_container(container_uri, client): more = True while more: escaped_url = container_uri.replace('/', '\\/') - search_uri = f"search?q=top_container_uri_u_sstr:{escaped_url}&page={this_page}&fields[]=uri,json,ancestors&resolve[]=ancestors:id&type[]=archival_object&page_size=25" + search_uri = f"repositories/{settings.ARCHIVESSPACE['repo_id']}/search?q=top_container_uri_u_sstr:{escaped_url}&page={this_page}&fields[]=uri,json,ancestors&resolve[]=ancestors:id&type[]=archival_object&page_size=25" items_in_container = client.get(search_uri).json() for item in items_in_container["results"]: item_json = json.loads(item["json"]) From 440899b6431523633379f9e5cd741a2242fc20de Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 9 Aug 2022 11:50:19 -0400 Subject: [PATCH 28/59] handle cases where there is no type_2 --- process_request/helpers.py | 3 ++- setup.cfg | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 3fb7ee4..0c41a7a 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -189,7 +189,8 @@ def get_restricted_in_container(container_uri, client): if status in ["closed", "conditional"]: for instance in item_json["instances"]: sub_container = instance["sub_container"] - restricted.append(f"{sub_container.get('type_2').capitalize()} {sub_container.get('indicator_2')}") + if all(["type_2" in sub_container, "indicator_2" in sub_container]): + restricted.append(f"{sub_container['type_2'].capitalize()} {sub_container['indicator_2']}") this_page += 1 if this_page > items_in_container["last_page"]: more = False diff --git a/setup.cfg b/setup.cfg index 0145ead..8e67b56 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [flake8] ignore = E501 exclude = .git,.gitmodules,__pycache__,*manage.py -max-complexity = 10 +max-complexity = 11 From 5546ad508bbfb09b777dea205af7e570dd753aef Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 10 Aug 2022 14:31:54 -0400 Subject: [PATCH 29/59] always return string --- process_request/routines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_request/routines.py b/process_request/routines.py index 899518e..8f3fd20 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -49,7 +49,7 @@ def get_data(self, uri_list, dimes_baseurl): "creators": get_resource_creators(item_collection), "restrictions": restrictions, "restrictions_text": restrictions_text, - "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri and format not in ["digital", "microform"]) else None, + "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri and format not in ["digital", "microform"]) else "", "collection_name": item_collection.get("title"), "parent": parent, "dates": get_dates(item_json, aspace.client), From 8323e763e581baea211c49d5104085cbdb33354c Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 15 Aug 2022 17:49:52 -0400 Subject: [PATCH 30/59] use get_url method in resolver view --- process_request/helpers.py | 14 +++++++------- process_request/routines.py | 2 +- process_request/tests.py | 6 +++--- process_request/views.py | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 0c41a7a..ce2153f 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -372,10 +372,11 @@ def get_parent_title(obj_json): return title -def get_url(obj_json, host, client): +def get_url(obj_json, client, host=None): """Returns a full URL for an object.""" uuid = shortuuid.uuid(name=obj_json["uri"]) - return "{}/collections/{}".format(host, uuid) if has_children(obj_json, client) else "{}/objects/{}".format(host, uuid) + path = "collections" if has_children(obj_json, client) else "objects" + return "{}/{}/{}".format(host, path, uuid) if host else "/objects/{}".format(uuid) def has_children(obj_json, client): @@ -431,9 +432,8 @@ def identifier_from_uri(uri): def resolve_ref_id(repo_id, ref_id, client): """ Accepts options to find archival objects using find_by_id method. - Generates and returns a DIMES id from an ArchiveSpace URI. + Generates and returns a DIMES URI from an ArchiveSpace URI. """ - aspace_objs = client.get('/repositories/{}/find_by_id/archival_objects?ref_id[]={}'.format(repo_id, ref_id)).json() - aspace_obj = aspace_objs['archival_objects'][0]['ref'] - resolved = identifier_from_uri(aspace_obj) - return resolved + aspace_objs = client.get('/repositories/{}/find_by_id/archival_objects?ref_id[]={}&resolve[]=archival_objects'.format(repo_id, ref_id)).json() + aspace_obj = aspace_objs['archival_objects'][0]['_resolved'] + return get_url(aspace_obj, client) diff --git a/process_request/routines.py b/process_request/routines.py index 8f3fd20..6b1daff 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -56,7 +56,7 @@ def get_data(self, uri_list, dimes_baseurl): "resource_id": item_collection.get("id_0"), "title": item_json.get("display_string"), "uri": item_json["uri"], - "dimes_url": get_url(item_json, dimes_baseurl, aspace.client), + "dimes_url": get_url(item_json, aspace.client, dimes_baseurl), "containers": get_container_indicators(item_json), "size": get_size(item_json["instances"]), "preferred_instance": { diff --git a/process_request/tests.py b/process_request/tests.py index 61caa21..cded87e 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -220,7 +220,7 @@ def test_indicator_to_integer(self): @patch("asnake.client.web_client.ASnakeClient") def test_get_restricted_in_container(self, mock_client): for fixture, expected in [ - ("unrestricted_search.json", ""), + ("unrestricted_search.json", ""), ("restricted_search.json", "Folder 122A, Folder 117A.1, Folder 118A.1, Folder 121A.1, Folder 123A.1, Folder 119A, Folder 120A.1")]: mock_client.get.return_value.json.return_value = json_from_fixture(fixture) result = get_restricted_in_container("/repositories/2/top_container/1", mock_client) @@ -408,12 +408,12 @@ def test_status_view(self): @patch("process_request.views.resolve_ref_id") def test_linkresolver_view(self, mock_resolve): with aspace_vcr.use_cassette("aspace_request.json") as cass: - mock_uri = "123" + mock_uri = "/objects/123" mock_refid = "12345abcdef" mock_resolve.return_value = mock_uri response = self.client.get(reverse('resolve-request'), {"ref_id": mock_refid}) self.assertEqual(response.status_code, 302) - self.assertEqual(response.url, f"{settings.RESOLVER_HOSTNAME}/objects/{mock_uri}") + self.assertEqual(response.url, f"//{settings.RESOLVER_HOSTNAME}{mock_uri}") mock_resolve.assert_called_with(settings.ARCHIVESSPACE["repo_id"], mock_refid, ANY) cass.rewind() diff --git a/process_request/views.py b/process_request/views.py index 925786a..762b699 100644 --- a/process_request/views.py +++ b/process_request/views.py @@ -124,7 +124,7 @@ def get(self, request): host = settings.RESOLVER_HOSTNAME repo = settings.ARCHIVESSPACE["repo_id"] uri = resolve_ref_id(repo, data, aspace.client) - response = redirect("{}/objects/{}".format(host, uri)) + response = redirect("//{}{}".format(host, uri)) return response except Exception as e: return Response({"detail": str(e)}, status=500) From 96e8f3407ee2a945e585746e98dfc95bd053f3a9 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 16 Aug 2022 16:31:36 -0400 Subject: [PATCH 31/59] use search endpoint to get names --- process_request/helpers.py | 12 +++++++----- process_request/routines.py | 4 ++-- process_request/tests.py | 11 ++++++++--- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 0c41a7a..2a687f1 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -281,7 +281,7 @@ def get_rights_text(item_json, client): return text -def get_resource_creators(resource): +def get_resource_creators(resource, client): """Gets all creators of a resource record and concatenate them into a string separated by commas. @@ -293,10 +293,12 @@ def get_resource_creators(resource): """ creators = [] if resource.get("linked_agents"): - for linked_agent in resource.get("linked_agents"): - if linked_agent.get("role") == "creator": - creators.append(linked_agent.get("_resolved").get('display_name').get('sort_name')) - return ", ".join(creators) + linked_agent_uris = [a["ref"].replace("/", "\\/") for a in resource["linked_agents"] if a["role"] == "creator"] + search_uri = f"/repositories/2/search?fields[]=title&type[]=agent_person&type[]=agent_corporate_entity&type[]=agent_family&page=1&q={' OR '.join(linked_agent_uris)}" + resp = client.get(search_uri) + resp.raise_for_status() + creators = resp.json()["results"] + return ", ".join([a["title"] for a in creators]) def get_dates(archival_object, client): diff --git a/process_request/routines.py b/process_request/routines.py index 8f3fd20..1b698db 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -36,7 +36,7 @@ def get_data(self, uri_list, dimes_baseurl): params={ "id_set": chunk, "resolve": [ - "resource::linked_agents", "ancestors", + "ancestors", "top_container", "top_container::container_locations", "instances::digital_object"]}) if objects.status_code == 200: @@ -46,7 +46,7 @@ def get_data(self, uri_list, dimes_baseurl): format, container, subcontainer, location, barcode, container_uri = get_preferred_format(item_json) restrictions, restrictions_text = get_rights_info(item_json, aspace.client) data.append({ - "creators": get_resource_creators(item_collection), + "creators": get_resource_creators(item_collection, aspace.client), "restrictions": restrictions, "restrictions_text": restrictions_text, "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri and format not in ["digital", "microform"]) else "", diff --git a/process_request/tests.py b/process_request/tests.py index 61caa21..66685b0 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -55,9 +55,12 @@ def setUp(self): password=settings.ARCHIVESSPACE["password"], repository=settings.ARCHIVESSPACE["repo_id"]).client - def test_get_resource_creators(self): + @patch("asnake.client.web_client.ASnakeClient") + def test_get_resource_creators(self, mock_client): + mock_client.get.return_value.json.return_value = {"results": [{"title": "Philanthropy Foundation"}]} obj_data = json_from_fixture("object_all.json") - self.assertEqual(get_resource_creators(obj_data.get("ancestors")[-1].get("_resolved")), "Philanthropy Foundation") + self.assertEqual(get_resource_creators(obj_data.get("ancestors")[-1].get("_resolved"), mock_client), "Philanthropy Foundation") + mock_client.get.assert_called_with("/repositories/2/search?fields[]=title&type[]=agent_person&type[]=agent_corporate_entity&type[]=agent_family&page=1&q=\\/agents\\/corporate_entities\\/123") def test_get_dates(self): obj_data = json_from_fixture("object_all.json") @@ -288,7 +291,9 @@ def test_deliver_email(self, mock_get_data): @aspace_vcr.use_cassette("aspace_request.json") @override_settings(RESTRICTED_IN_CONTAINER=False) - def test_get_data(self): + @patch("process_request.routines.get_resource_creators") + def test_get_data(self, mock_creators): + mock_creators.return_value = "Philanthropy Foundation" get_as_data = Processor().get_data(["/repositories/2/archival_objects/1134638"], "https://dimes.rockarch.org") self.assertTrue(isinstance(get_as_data, list)) self.assertEqual(len(get_as_data), 1) From 94a5aed82b048831c43403c2ce8a301b1903be1e Mon Sep 17 00:00:00 2001 From: Clinton Graham Date: Fri, 26 Aug 2022 15:25:01 -0400 Subject: [PATCH 32/59] #221: strip xml/html from data to POST to Aeon --- process_request/routines.py | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/process_request/routines.py b/process_request/routines.py index 1b698db..7f406e7 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -1,3 +1,6 @@ +import re +import xml.etree.ElementTree as ET + from asnake.aspace import ASpace from django.conf import settings from django.core.mail import send_mail @@ -14,6 +17,16 @@ class Processor(object): delivery formats. """ + def strip_tags(self, user_string): + """Strips XML and HTML tags from a string.""" + try: + xmldoc = ET.fromstring(f'{user_string}') + textcontent = ''.join(xmldoc.itertext()) + except ET.ParseError: + tagregxp = re.compile(r'<[/\w][^>]+>') + textcontent = tagregxp.sub('', user_string) + return textcontent + def get_data(self, uri_list, dimes_baseurl): """Gets data about an archival object from ArchivesSpace. @@ -42,19 +55,19 @@ def get_data(self, uri_list, dimes_baseurl): if objects.status_code == 200: for item_json in objects.json(): item_collection = item_json.get("ancestors")[-1].get("_resolved") - parent = get_parent_title(item_json.get("ancestors")[0].get("_resolved")) if len(item_json.get("ancestors")) > 1 else None + parent = self.strip_tags(get_parent_title(item_json.get("ancestors")[0].get("_resolved"))) if len(item_json.get("ancestors")) > 1 else None format, container, subcontainer, location, barcode, container_uri = get_preferred_format(item_json) restrictions, restrictions_text = get_rights_info(item_json, aspace.client) data.append({ "creators": get_resource_creators(item_collection, aspace.client), "restrictions": restrictions, - "restrictions_text": restrictions_text, + "restrictions_text": self.strip_tags(restrictions_text), "restricted_in_container": get_restricted_in_container(container_uri, aspace.client) if (settings.RESTRICTED_IN_CONTAINER and container_uri and format not in ["digital", "microform"]) else "", - "collection_name": item_collection.get("title"), + "collection_name": self.strip_tags(item_collection.get("title")), "parent": parent, "dates": get_dates(item_json, aspace.client), "resource_id": item_collection.get("id_0"), - "title": item_json.get("display_string"), + "title": self.strip_tags(item_json.get("display_string")), "uri": item_json["uri"], "dimes_url": get_url(item_json, dimes_baseurl, aspace.client), "containers": get_container_indicators(item_json), From 9da22773b535e9bfdcbb6aa5a4f0ca907231597f Mon Sep 17 00:00:00 2001 From: helrond Date: Thu, 1 Sep 2022 00:22:23 +0000 Subject: [PATCH 33/59] Dependency updates --- requirements.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index b5525d3..d556516 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,9 +14,9 @@ boltons==21.0.0 # via archivessnake certifi==2022.6.15 # via requests -charset-normalizer==2.1.0 +charset-normalizer==2.1.1 # via requests -django==4.0.6 +django==4.1 # via # -r requirements.in # django-cors-headers @@ -31,9 +31,9 @@ idna==3.3 # yarl inflect==5.6.2 # via -r requirements.in -jarowinkler==1.2.0 +jarowinkler==1.2.1 # via rapidfuzz -more-itertools==8.13.0 +more-itertools==8.14.0 # via archivessnake multidict==6.0.2 # via yarl @@ -41,13 +41,13 @@ ordered-set==4.1.0 # via -r requirements.in psycopg2-binary==2.9.3 # via -r requirements.in -pytz==2022.1 +pytz==2022.2.1 # via djangorestframework pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.4.2 +rapidfuzz==2.6.0 # via archivessnake requests==2.28.1 # via @@ -61,11 +61,11 @@ sqlparse==0.4.2 # via django structlog==22.1.0 # via archivessnake -urllib3==1.26.11 +urllib3==1.26.12 # via requests -vcrpy==4.2.0 +vcrpy==4.2.1 # via -r requirements.in wrapt==1.14.1 # via vcrpy -yarl==1.7.2 +yarl==1.8.1 # via vcrpy From cb13986e2b01e8377c10c8851af3a9c4c64a9e0b Mon Sep 17 00:00:00 2001 From: Clinton Graham Date: Thu, 1 Sep 2022 13:58:15 -0400 Subject: [PATCH 34/59] #227: Pass along reading room and site if provided --- process_request/routines.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/process_request/routines.py b/process_request/routines.py index 7f406e7..6f38bc6 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -250,6 +250,11 @@ def prepare_reading_room_request(self, items, request_data): "ScheduledDate": request_data.get("scheduledDate"), "SpecialRequest": request_data.get("questions"), } + if request_data.get("readingRoomID"): + reading_room_defaults["Location"] = request_data.get("readingRoomID") + if request_data.get("site"): + reading_room_defaults["Site"] = request_data.get("site") + request_data = self.parse_items(items) return dict(**self.request_defaults, **reading_room_defaults, **request_data) From dff37cc54964d668b8d75d5f2c60c97008f5dd47 Mon Sep 17 00:00:00 2001 From: Clinton Graham Date: Thu, 1 Sep 2022 16:51:52 -0400 Subject: [PATCH 35/59] #230: Add EADNumber via ead_id --- fixtures/as_data.json | 1 + process_request/routines.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/fixtures/as_data.json b/fixtures/as_data.json index 638b733..c2da009 100644 --- a/fixtures/as_data.json +++ b/fixtures/as_data.json @@ -1,4 +1,5 @@ { + "ead_id": "", "creators": "Ford Foundation", "collection_name": "Ford Foundation records, General Correspondence", "parent": "General Correspondence", diff --git a/process_request/routines.py b/process_request/routines.py index 7f406e7..039e8fb 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -59,6 +59,7 @@ def get_data(self, uri_list, dimes_baseurl): format, container, subcontainer, location, barcode, container_uri = get_preferred_format(item_json) restrictions, restrictions_text = get_rights_info(item_json, aspace.client) data.append({ + "ead_id": item_collection.get("ead_id"), "creators": get_resource_creators(item_collection, aspace.client), "restrictions": restrictions, "restrictions_text": self.strip_tags(restrictions_text), @@ -187,6 +188,7 @@ def __init__(self): "AeonForm": "EADRequest", "DocumentType": "Default", "GroupingIdentifier": "GroupingField", + "GroupingOption_EADNumber": "FirstValue", "GroupingOption_ItemInfo1": "Concatenate", "GroupingOption_ItemDate": "Concatenate", "GroupingOption_ItemTitle": "FirstValue", @@ -287,6 +289,7 @@ def parse_items(self, items, description=""): request_prefix = i["uri"].split("/")[-1] parsed["Request"].append(request_prefix) parsed.update({ + "EADNumber_{}".format(request_prefix): i['ead_id'], "CallNumber_{}".format(request_prefix): i["resource_id"], "GroupingField_{}".format(request_prefix): i["preferred_instance"]["uri"], "ItemAuthor_{}".format(request_prefix): i["creators"], From bf91c783a22053b9efca042f09abd77faf9759b7 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 1 Sep 2022 17:02:21 -0400 Subject: [PATCH 36/59] use configured repo id --- process_request/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 2a687f1..e628e42 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -294,7 +294,7 @@ def get_resource_creators(resource, client): creators = [] if resource.get("linked_agents"): linked_agent_uris = [a["ref"].replace("/", "\\/") for a in resource["linked_agents"] if a["role"] == "creator"] - search_uri = f"/repositories/2/search?fields[]=title&type[]=agent_person&type[]=agent_corporate_entity&type[]=agent_family&page=1&q={' OR '.join(linked_agent_uris)}" + search_uri = f"/repositories/{settings.ARCHIVESSPACE['repo_id']}/search?fields[]=title&type[]=agent_person&type[]=agent_corporate_entity&type[]=agent_family&page=1&q={' OR '.join(linked_agent_uris)}" resp = client.get(search_uri) resp.raise_for_status() creators = resp.json()["results"] From 5809e678870d5b879fd8fb58c159643bc09f25b6 Mon Sep 17 00:00:00 2001 From: Clinton Graham Date: Thu, 1 Sep 2022 17:03:05 -0400 Subject: [PATCH 37/59] #227: Eager add possible site, strip missing values on get --- process_request/routines.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/process_request/routines.py b/process_request/routines.py index 6f38bc6..0fe7e55 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -232,7 +232,7 @@ def get_request_data(self, request_type, baseurl, **kwargs): else: raise ValueError( "Unknown request type '{}', expected either 'readingroom' or 'duplication'".format(request_type)) - return data + return {k: v for k, v in data.items() if v} def prepare_reading_room_request(self, items, request_data): """Maps reading room request data to Aeon fields. @@ -249,11 +249,8 @@ def prepare_reading_room_request(self, items, request_data): "RequestType": "Loan", "ScheduledDate": request_data.get("scheduledDate"), "SpecialRequest": request_data.get("questions"), + "Site": request_data.get("site"), } - if request_data.get("readingRoomID"): - reading_room_defaults["Location"] = request_data.get("readingRoomID") - if request_data.get("site"): - reading_room_defaults["Site"] = request_data.get("site") request_data = self.parse_items(items) return dict(**self.request_defaults, **reading_room_defaults, **request_data) From 97d8d5f69b3ead4c21976cf84346496f1efcfc77 Mon Sep 17 00:00:00 2001 From: Clinton Graham Date: Thu, 1 Sep 2022 17:11:21 -0400 Subject: [PATCH 38/59] #222: Use ASnake to format the resource id --- process_request/helpers.py | 10 +++++++++- process_request/routines.py | 7 ++++--- request_broker/config.py.deploy | 1 + request_broker/config.py.example | 1 + request_broker/settings.py | 1 + 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 2a687f1..bac6417 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -3,7 +3,7 @@ import inflect import shortuuid -from asnake.utils import get_date_display, get_note_text, text_in_note +from asnake.utils import format_resource_id, get_date_display, get_note_text, text_in_note from django.conf import settings from ordered_set import OrderedSet @@ -439,3 +439,11 @@ def resolve_ref_id(repo_id, ref_id, client): aspace_obj = aspace_objs['archival_objects'][0]['ref'] resolved = identifier_from_uri(aspace_obj) return resolved + + +def get_formatted_resource_id(resource, client): + """Gets a formatted resource id from the resource + + Concatenates the resource id parts using the separator from the config + """ + return format_resource_id(resource, client, settings.RESOURCE_ID_SEPARATOR) diff --git a/process_request/routines.py b/process_request/routines.py index 7f406e7..5ec67f6 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -5,8 +5,8 @@ from django.conf import settings from django.core.mail import send_mail -from .helpers import (get_container_indicators, get_dates, get_parent_title, - get_preferred_format, get_resource_creators, +from .helpers import (get_container_indicators, get_dates, get_formatted_resource_id, + get_parent_title, get_preferred_format, get_resource_creators, get_restricted_in_container, get_rights_info, get_size, get_url, list_chunks) @@ -58,6 +58,7 @@ def get_data(self, uri_list, dimes_baseurl): parent = self.strip_tags(get_parent_title(item_json.get("ancestors")[0].get("_resolved"))) if len(item_json.get("ancestors")) > 1 else None format, container, subcontainer, location, barcode, container_uri = get_preferred_format(item_json) restrictions, restrictions_text = get_rights_info(item_json, aspace.client) + resource_id = get_formatted_resource_id(item_collection, aspace.client) data.append({ "creators": get_resource_creators(item_collection, aspace.client), "restrictions": restrictions, @@ -66,7 +67,7 @@ def get_data(self, uri_list, dimes_baseurl): "collection_name": self.strip_tags(item_collection.get("title")), "parent": parent, "dates": get_dates(item_json, aspace.client), - "resource_id": item_collection.get("id_0"), + "resource_id": resource_id, "title": self.strip_tags(item_json.get("display_string")), "uri": item_json["uri"], "dimes_url": get_url(item_json, dimes_baseurl, aspace.client), diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy index 4576251..cef60ad 100644 --- a/request_broker/config.py.deploy +++ b/request_broker/config.py.deploy @@ -22,3 +22,4 @@ DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" DIMES_HOSTNAME = "${DIMES_HOSTNAME}" RESTRICTED_IN_CONTAINER = ${RESTRICTED_IN_CONTAINER} OFFSITE_BUILDINGS = ${OFFSITE_BUILDINGS} +RESOURCE_ID_SEPARATOR = ${RESOURCE_ID_SEPARATOR} diff --git a/request_broker/config.py.example b/request_broker/config.py.example index 0b2d701..9e8bf07 100644 --- a/request_broker/config.py.example +++ b/request_broker/config.py.example @@ -22,3 +22,4 @@ DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sende DIMES_HOSTNAME = "dimes.rockarch.org" # Hostname for DIMES application RESTRICTED_IN_CONTAINER = False # Fetch a list of restricted items in the same container as the requested item. OFFSITE_BUILDINGS = ["Armonk", "Greenrock"] # Names of offsite buildings, which will be added to locations (list of strings) +RESOURCE_ID_SEPARATOR = ':' diff --git a/request_broker/settings.py b/request_broker/settings.py index de8ce08..e978cfd 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -165,3 +165,4 @@ RESTRICTED_IN_CONTAINER = config.RESTRICTED_IN_CONTAINER OFFSITE_BUILDINGS = getattr(config, 'OFFSITE_BUILDINGS', []) +RESOURCE_ID_SEPARATOR = config.RESOURCE_ID_SEPARATOR From dba476d5492a20e49f81661734aa259859009ec9 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 1 Sep 2022 17:37:43 -0400 Subject: [PATCH 39/59] linting --- process_request/helpers.py | 3 ++- process_request/routines.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index bac6417..15cd9bb 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -3,7 +3,8 @@ import inflect import shortuuid -from asnake.utils import format_resource_id, get_date_display, get_note_text, text_in_note +from asnake.utils import (format_resource_id, get_date_display, get_note_text, + text_in_note) from django.conf import settings from ordered_set import OrderedSet diff --git a/process_request/routines.py b/process_request/routines.py index 5ec67f6..e9911e2 100644 --- a/process_request/routines.py +++ b/process_request/routines.py @@ -5,8 +5,9 @@ from django.conf import settings from django.core.mail import send_mail -from .helpers import (get_container_indicators, get_dates, get_formatted_resource_id, - get_parent_title, get_preferred_format, get_resource_creators, +from .helpers import (get_container_indicators, get_dates, + get_formatted_resource_id, get_parent_title, + get_preferred_format, get_resource_creators, get_restricted_in_container, get_rights_info, get_size, get_url, list_chunks) From 228a2ce369bf3efdbe8c0c3a258389646a793849 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 1 Sep 2022 17:45:18 -0400 Subject: [PATCH 40/59] adds test --- process_request/tests.py | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/process_request/tests.py b/process_request/tests.py index 66685b0..bcedd1c 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -13,11 +13,11 @@ from rest_framework.test import APIRequestFactory from .helpers import (get_container_indicators, get_dates, get_file_versions, - get_instance_data, get_locations, get_parent_title, - get_preferred_format, get_resource_creators, - get_restricted_in_container, get_rights_info, - get_rights_status, get_rights_text, get_size, - indicator_to_integer, prepare_values) + get_formatted_resource_id, get_instance_data, + get_locations, get_parent_title, get_preferred_format, + get_resource_creators, get_restricted_in_container, + get_rights_info, get_rights_status, get_rights_text, + get_size, indicator_to_integer, prepare_values) from .models import User from .routines import AeonRequester, Mailer, Processor from .test_helpers import json_from_fixture, random_list, random_string @@ -229,6 +229,16 @@ def test_get_restricted_in_container(self, mock_client): result = get_restricted_in_container("/repositories/2/top_container/1", mock_client) self.assertEqual(result, expected) + @patch("asnake.client.web_client.ASnakeClient") + def test_get_formatted_resource_id(self, mock_client): + for fixture, expected in [ + ({"id_0": "FA123"}, "FA123"), + ({"id_0": "FA123", "id_1": "001"}, "FA123:001"), + ({"id_0": "FA123", "id_1": "001", "id_2": "A"}, "FA123:001:A"), + ({"id_0": "FA123", "id_1": "001", "id_2": "A", "id_3": "dev"}, "FA123:001:A:dev")]: + result = get_formatted_resource_id(fixture, mock_client) + self.assertEqual(result, expected) + # Test is commented out as the code is currently not used, and this allows us to shed a few configs # def test_aeon_client(self): # baseurl = random_string(20) From fd9bbae0effe1239afb64275141f55b861cdeaf4 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Thu, 1 Sep 2022 18:27:24 -0400 Subject: [PATCH 41/59] string --- request_broker/config.py.deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy index cef60ad..9f38102 100644 --- a/request_broker/config.py.deploy +++ b/request_broker/config.py.deploy @@ -22,4 +22,4 @@ DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" DIMES_HOSTNAME = "${DIMES_HOSTNAME}" RESTRICTED_IN_CONTAINER = ${RESTRICTED_IN_CONTAINER} OFFSITE_BUILDINGS = ${OFFSITE_BUILDINGS} -RESOURCE_ID_SEPARATOR = ${RESOURCE_ID_SEPARATOR} +RESOURCE_ID_SEPARATOR = "${RESOURCE_ID_SEPARATOR}" From 1317fde104aba27b8ef48ae190f6ccf02a62bb30 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 6 Sep 2022 16:01:00 -0400 Subject: [PATCH 42/59] update pinning --- requirements.in | 2 +- requirements.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.in b/requirements.in index f923b31..6229652 100644 --- a/requirements.in +++ b/requirements.in @@ -1,5 +1,5 @@ ArchivesSnake~=0.9 -Django~=4.0 +Django~=4.0.7 django-cors-headers~=3.12 djangorestframework~=3.13 inflect~=5.6 diff --git a/requirements.txt b/requirements.txt index d556516..1bab48a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ certifi==2022.6.15 # via requests charset-normalizer==2.1.1 # via requests -django==4.1 +django==4.0.7 # via # -r requirements.in # django-cors-headers @@ -47,7 +47,7 @@ pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.6.0 +rapidfuzz==2.6.1 # via archivessnake requests==2.28.1 # via From f46ae51292adb405264355f2eb9502f55f18f339 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 26 Sep 2022 12:16:48 -0400 Subject: [PATCH 43/59] honor path in else statement, improve docstring --- process_request/helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index d4cbf2b..fc8facf 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -376,10 +376,10 @@ def get_parent_title(obj_json): def get_url(obj_json, client, host=None): - """Returns a full URL for an object.""" + """Returns a full or relative URL for an object, depending on if a host is provided.""" uuid = shortuuid.uuid(name=obj_json["uri"]) path = "collections" if has_children(obj_json, client) else "objects" - return "{}/{}/{}".format(host, path, uuid) if host else "/objects/{}".format(uuid) + return f"{host}/{path}/{uuid}" if host else f"/{path}/{uuid}" def has_children(obj_json, client): From c3906534e6983da5f6b01438dd79e97b56c07107 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 26 Sep 2022 12:17:25 -0400 Subject: [PATCH 44/59] remove unused function --- process_request/helpers.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index fc8facf..5bded1a 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -415,23 +415,6 @@ def list_chunks(lst, n): yield lst[i:i + n] -def identifier_from_uri(uri): - """Creates a short UUID. - - Uses `shortuuid`, which first creates a v5 UUID using an object's AS URI as - a name, and then converts them to base57 using lowercase and uppercase - letters and digits, and removing similar-looking characters such as - l, 1, I, O and 0. - - This is a one-way process; while it is possible to consistently generate a - given UUID given an AS URI, it is not possible to decode the URI from the - UUID. - - Helper method copied from https://github.com/ulsdevteam/pisces/blob/base/fetcher/helpers.py#L81 - """ - return shortuuid.uuid(name=uri) - - def resolve_ref_id(repo_id, ref_id, client): """ Accepts options to find archival objects using find_by_id method. From 22d02865181be274e63acfff60d7f4d943ee4ac6 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 26 Sep 2022 14:57:44 -0400 Subject: [PATCH 45/59] replace hostname config with baseurl config --- process_request/tests.py | 2 +- process_request/views.py | 14 +++++++------- request_broker/config.py.deploy | 2 +- request_broker/config.py.example | 2 +- request_broker/settings.py | 4 +--- 5 files changed, 11 insertions(+), 13 deletions(-) diff --git a/process_request/tests.py b/process_request/tests.py index 403b961..e20da6c 100644 --- a/process_request/tests.py +++ b/process_request/tests.py @@ -428,7 +428,7 @@ def test_linkresolver_view(self, mock_resolve): mock_resolve.return_value = mock_uri response = self.client.get(reverse('resolve-request'), {"ref_id": mock_refid}) self.assertEqual(response.status_code, 302) - self.assertEqual(response.url, f"//{settings.RESOLVER_HOSTNAME}{mock_uri}") + self.assertEqual(response.url, f"{settings.DIMES_BASEURL}{mock_uri}") mock_resolve.assert_called_with(settings.ARCHIVESSPACE["repo_id"], mock_refid, ANY) cass.rewind() diff --git a/process_request/views.py b/process_request/views.py index 762b699..11ebed5 100644 --- a/process_request/views.py +++ b/process_request/views.py @@ -31,7 +31,7 @@ class ParseRequestView(BaseRequestView): def get_response_data(self, request): uri = request.data.get("item") - baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") + baseurl = request.META.get("HTTP_ORIGIN", settings.DIMES_BASEURL) return Processor().parse_item(uri, baseurl) @@ -43,7 +43,7 @@ def get_response_data(self, request): to_address = request.data.get("email") subject = request.data.get("subject", "") message = request.data.get("message") - baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") + baseurl = request.META.get("HTTP_ORIGIN", settings.DIMES_BASEURL) emailed = Mailer().send_message(to_address, object_list, subject, message, baseurl) return {"detail": emailed} @@ -53,7 +53,7 @@ class DeliverReadingRoomRequestView(BaseRequestView): def get_response_data(self, request): request_data = request.data - baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") + baseurl = request.META.get("HTTP_ORIGIN", settings.DIMES_BASEURL) delivered = AeonRequester().get_request_data( "readingroom", baseurl, **request_data) return delivered @@ -64,7 +64,7 @@ class DeliverDuplicationRequestView(BaseRequestView): def get_response_data(self, request): request_data = request.data - baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") + baseurl = request.META.get("HTTP_ORIGIN", settings.DIMES_BASEURL) delivered = AeonRequester().get_request_data( "duplication", baseurl, **request_data) return delivered @@ -95,7 +95,7 @@ def post(self, request): """Streams a large CSV file.""" try: submitted = request.data.get("items") - baseurl = request.META.get("HTTP_ORIGIN", f"https://{settings.DIMES_HOSTNAME}") + baseurl = request.META.get("HTTP_ORIGIN", settings.DIMES_BASEURL) processor = Processor() fetched = processor.get_data(submitted, baseurl) response = StreamingHttpResponse( @@ -121,10 +121,10 @@ def get(self, request): try: data = request.GET["ref_id"] - host = settings.RESOLVER_HOSTNAME + host = settings.DIMES_BASEURL repo = settings.ARCHIVESSPACE["repo_id"] uri = resolve_ref_id(repo, data, aspace.client) - response = redirect("//{}{}".format(host, uri)) + response = redirect("{}{}".format(host, uri)) return response except Exception as e: return Response({"detail": str(e)}, status=500) diff --git a/request_broker/config.py.deploy b/request_broker/config.py.deploy index cef60ad..6e71e6c 100644 --- a/request_broker/config.py.deploy +++ b/request_broker/config.py.deploy @@ -19,7 +19,7 @@ EMAIL_HOST_PASSWORD = "${EMAIL_HOST_PASSWORD}" EMAIL_USE_TLS = ${EMAIL_USE_TLS} EMAIL_USE_SSL = ${EMAIL_USE_SSL} DEFAULT_FROM_EMAIL = "${DEFAULT_FROM_EMAIL}" -DIMES_HOSTNAME = "${DIMES_HOSTNAME}" +DIMES_BASEURL = "${DIMES_BASEURL}" RESTRICTED_IN_CONTAINER = ${RESTRICTED_IN_CONTAINER} OFFSITE_BUILDINGS = ${OFFSITE_BUILDINGS} RESOURCE_ID_SEPARATOR = ${RESOURCE_ID_SEPARATOR} diff --git a/request_broker/config.py.example b/request_broker/config.py.example index 9e8bf07..b201637 100644 --- a/request_broker/config.py.example +++ b/request_broker/config.py.example @@ -19,7 +19,7 @@ EMAIL_HOST_PASSWORD = "foobar" # password for the email user EMAIL_USE_TLS = 1 # Use TLS connection for email (1 for True, 0 for False) EMAIL_USE_SSL = 0 # Use SSL connection for email (1 for True, 0 for False) DEFAULT_FROM_EMAIL = "dimes@example.com" # user that should be set as the sender -DIMES_HOSTNAME = "dimes.rockarch.org" # Hostname for DIMES application +DIMES_BASEURL = "https://dimes.rockarch.org" # Base URL for DIMES application RESTRICTED_IN_CONTAINER = False # Fetch a list of restricted items in the same container as the requested item. OFFSITE_BUILDINGS = ["Armonk", "Greenrock"] # Names of offsite buildings, which will be added to locations (list of strings) RESOURCE_ID_SEPARATOR = ':' diff --git a/request_broker/settings.py b/request_broker/settings.py index e978cfd..4789634 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -135,7 +135,7 @@ # CORS settings CORS_ALLOWED_ORIGINS = config.DJANGO_CORS_ALLOWED_ORIGINS -DIMES_HOSTNAME = config.DIMES_HOSTNAME +DIMES_BASEURL = config.DIMES_BASEURL ARCHIVESSPACE = { "baseurl": config.AS_BASEURL, @@ -152,8 +152,6 @@ EMAIL_USE_SSL = config.EMAIL_USE_SSL EMAIL_DEFAULT_FROM = config.DEFAULT_FROM_EMAIL -RESOLVER_HOSTNAME = config.DIMES_HOSTNAME - EXPORT_FIELDS = [ ("title", None), ("dimes_url", "URL"), From 2c97ed0f6b57a987e5c2fa358fc4a7aaa0401403 Mon Sep 17 00:00:00 2001 From: helrond Date: Sat, 1 Oct 2022 00:36:38 +0000 Subject: [PATCH 46/59] Dependency updates --- requirements.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1bab48a..a6707e6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ attrs==22.1.0 # via archivessnake boltons==21.0.0 # via archivessnake -certifi==2022.6.15 +certifi==2022.9.24 # via requests charset-normalizer==2.1.1 # via requests @@ -23,15 +23,15 @@ django==4.0.7 # djangorestframework django-cors-headers==3.13.0 # via -r requirements.in -djangorestframework==3.13.1 +djangorestframework==3.14.0 # via -r requirements.in -idna==3.3 +idna==3.4 # via # requests # yarl inflect==5.6.2 # via -r requirements.in -jarowinkler==1.2.1 +jarowinkler==1.2.3 # via rapidfuzz more-itertools==8.14.0 # via archivessnake @@ -47,7 +47,7 @@ pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.6.1 +rapidfuzz==2.10.3 # via archivessnake requests==2.28.1 # via @@ -57,7 +57,7 @@ shortuuid==1.0.9 # via -r requirements.in six==1.16.0 # via vcrpy -sqlparse==0.4.2 +sqlparse==0.4.3 # via django structlog==22.1.0 # via archivessnake From 533ebbab17506e1af2684c9c4f78782b40e7f611 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 4 Oct 2022 16:54:16 -0400 Subject: [PATCH 47/59] simplify dockerfile --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3a7c69d..5dcab9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,6 @@ -FROM python:3.10-buster +FROM python:3.10 ENV PYTHONUNBUFFERED 1 -RUN apt-get update \ - && apt-get install -y \ - postgresql \ - && rm -rf /var/lib/apt/lists/* - WORKDIR /code ADD requirements.txt /code/ RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt From 1159f2e300eabdb56e38fbe76bbafdf924dc94ca Mon Sep 17 00:00:00 2001 From: helrond Date: Tue, 1 Nov 2022 00:30:33 +0000 Subject: [PATCH 48/59] Dependency updates --- requirements.txt | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index a6707e6..54402b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ certifi==2022.9.24 # via requests charset-normalizer==2.1.1 # via requests -django==4.0.7 +django==4.0.8 # via # -r requirements.in # django-cors-headers @@ -31,23 +31,21 @@ idna==3.4 # yarl inflect==5.6.2 # via -r requirements.in -jarowinkler==1.2.3 - # via rapidfuzz -more-itertools==8.14.0 +more-itertools==9.0.0 # via archivessnake multidict==6.0.2 # via yarl ordered-set==4.1.0 # via -r requirements.in -psycopg2-binary==2.9.3 +psycopg2-binary==2.9.5 # via -r requirements.in -pytz==2022.2.1 +pytz==2022.6 # via djangorestframework pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.10.3 +rapidfuzz==2.13.0 # via archivessnake requests==2.28.1 # via From 1d91158313711fecf9ea613d9add43df46477451 Mon Sep 17 00:00:00 2001 From: helrond Date: Thu, 1 Dec 2022 00:24:56 +0000 Subject: [PATCH 49/59] Dependency updates --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 54402b6..87379fb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -45,21 +45,21 @@ pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.13.0 +rapidfuzz==2.13.2 # via archivessnake requests==2.28.1 # via # -r requirements.in # archivessnake -shortuuid==1.0.9 +shortuuid==1.0.11 # via -r requirements.in six==1.16.0 # via vcrpy sqlparse==0.4.3 # via django -structlog==22.1.0 +structlog==22.3.0 # via archivessnake -urllib3==1.26.12 +urllib3==1.26.13 # via requests vcrpy==4.2.1 # via -r requirements.in From 5038e7634f16d658796d1608aafd40f3bc6b4ba4 Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 9 Dec 2022 11:47:47 -0500 Subject: [PATCH 50/59] security patch updates dependencies --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 87379fb..be9d6d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ attrs==22.1.0 # via archivessnake boltons==21.0.0 # via archivessnake -certifi==2022.9.24 +certifi==2022.12.7 # via requests charset-normalizer==2.1.1 # via requests @@ -33,7 +33,7 @@ inflect==5.6.2 # via -r requirements.in more-itertools==9.0.0 # via archivessnake -multidict==6.0.2 +multidict==6.0.3 # via yarl ordered-set==4.1.0 # via -r requirements.in @@ -45,7 +45,7 @@ pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.13.2 +rapidfuzz==2.13.4 # via archivessnake requests==2.28.1 # via @@ -65,5 +65,5 @@ vcrpy==4.2.1 # via -r requirements.in wrapt==1.14.1 # via vcrpy -yarl==1.8.1 +yarl==1.8.2 # via vcrpy From 9f6aae83239f88163b13d3722c08bacc2edd39ec Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 12 Dec 2022 13:58:24 -0500 Subject: [PATCH 51/59] install django-csp --- requirements.in | 1 + requirements.txt | 3 +++ 2 files changed, 4 insertions(+) diff --git a/requirements.in b/requirements.in index 6229652..1275621 100644 --- a/requirements.in +++ b/requirements.in @@ -1,6 +1,7 @@ ArchivesSnake~=0.9 Django~=4.0.7 django-cors-headers~=3.12 +django-csp~=3.7 djangorestframework~=3.13 inflect~=5.6 ordered-set~=4.1 diff --git a/requirements.txt b/requirements.txt index be9d6d0..8cd08ad 100644 --- a/requirements.txt +++ b/requirements.txt @@ -20,9 +20,12 @@ django==4.0.8 # via # -r requirements.in # django-cors-headers + # django-csp # djangorestframework django-cors-headers==3.13.0 # via -r requirements.in +django-csp==3.7 + # via -r requirements.in djangorestframework==3.14.0 # via -r requirements.in idna==3.4 From 3da24c9dbf8be986d234432f903905e9137310c8 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Mon, 12 Dec 2022 14:27:54 -0500 Subject: [PATCH 52/59] add and configure SCP headers --- request_broker/settings.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/request_broker/settings.py b/request_broker/settings.py index 4789634..2ac6362 100644 --- a/request_broker/settings.py +++ b/request_broker/settings.py @@ -53,6 +53,7 @@ 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', + 'csp.middleware.CSPMiddleware', ] ROOT_URLCONF = 'request_broker.urls' @@ -137,6 +138,11 @@ CORS_ALLOWED_ORIGINS = config.DJANGO_CORS_ALLOWED_ORIGINS DIMES_BASEURL = config.DIMES_BASEURL +# Content Security Policy +CSP_IMG_SRC = ("'self'") +CSP_STYLE_SRC = ("'self'", "'unsafe-inline'") +CSP_SCRIPT_SRC = ("'self'", "'unsafe-inline'") + ARCHIVESSPACE = { "baseurl": config.AS_BASEURL, "username": config.AS_USERNAME, From 355a15ee8182b9ee50b87b48b65ab83f241644b0 Mon Sep 17 00:00:00 2001 From: helrond Date: Sun, 1 Jan 2023 00:22:31 +0000 Subject: [PATCH 53/59] Dependency updates --- requirements.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8cd08ad..550d755 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,14 +1,14 @@ # -# This file is autogenerated by pip-compile with python 3.10 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.10 +# by the following command: # # pip-compile # archivessnake==0.9.1 # via -r requirements.in -asgiref==3.5.2 +asgiref==3.6.0 # via django -attrs==22.1.0 +attrs==22.2.0 # via archivessnake boltons==21.0.0 # via archivessnake @@ -36,19 +36,19 @@ inflect==5.6.2 # via -r requirements.in more-itertools==9.0.0 # via archivessnake -multidict==6.0.3 +multidict==6.0.4 # via yarl ordered-set==4.1.0 # via -r requirements.in psycopg2-binary==2.9.5 # via -r requirements.in -pytz==2022.6 +pytz==2022.7 # via djangorestframework pyyaml==6.0 # via # archivessnake # vcrpy -rapidfuzz==2.13.4 +rapidfuzz==2.13.7 # via archivessnake requests==2.28.1 # via From a5f64990f0d623c5259dbb97c8b93fe759ec5592 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Tue, 3 Jan 2023 16:47:09 -0500 Subject: [PATCH 54/59] update hook versions --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a6d52b0..fbf80b3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,20 +1,20 @@ repos: - repo: https://github.com/pre-commit/mirrors-autopep8 - rev: v1.6.0 + rev: v2.0.1 hooks: - id: autopep8 args: - --in-place - --aggressive - repo: https://github.com/pycqa/flake8 - rev: 4.0.1 + rev: 6.0.0 hooks: - id: flake8 - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.11.4 hooks: - id: isort - repo: https://github.com/jazzband/pip-tools - rev: 6.5.1 + rev: 6.12.1 hooks: - id: pip-compile From c9d3e76d7fd3c3af9e26554075945bc3a69c5505 Mon Sep 17 00:00:00 2001 From: helrond Date: Wed, 1 Feb 2023 00:23:56 +0000 Subject: [PATCH 55/59] Dependency updates --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 550d755..8eabb46 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ boltons==21.0.0 # via archivessnake certifi==2022.12.7 # via requests -charset-normalizer==2.1.1 +charset-normalizer==3.0.1 # via requests django==4.0.8 # via @@ -42,7 +42,7 @@ ordered-set==4.1.0 # via -r requirements.in psycopg2-binary==2.9.5 # via -r requirements.in -pytz==2022.7 +pytz==2022.7.1 # via djangorestframework pyyaml==6.0 # via @@ -50,7 +50,7 @@ pyyaml==6.0 # vcrpy rapidfuzz==2.13.7 # via archivessnake -requests==2.28.1 +requests==2.28.2 # via # -r requirements.in # archivessnake @@ -62,7 +62,7 @@ sqlparse==0.4.3 # via django structlog==22.3.0 # via archivessnake -urllib3==1.26.13 +urllib3==1.26.14 # via requests vcrpy==4.2.1 # via -r requirements.in From c10be871ce147b63b94317ebe92e05164384afde Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 1 Feb 2023 13:49:20 -0500 Subject: [PATCH 56/59] keep pre-commit hooks up to date --- .github/workflows/dependencies.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 7152a65..0d2cfc0 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -15,14 +15,21 @@ jobs: with: ref: development - - uses: actions/setup-python@v4 + - name: Set up Python + uses: actions/setup-python@v4 with: python-version: '3.10' cache: pip - - run: | - pip install pip-tools - pip-compile --upgrade + - name: Install pre-commit and pip-tools + run: pip install pre-commit pip-tools + + - name: Run pre-commit autoupdate + run: pre-commit autoupdate + + - name: Run pip-compile + run: pip-compile --upgrade + - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: From e784d74c82831e7eccba637edaf1e4d3c343c64a Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 6 Feb 2023 11:02:50 -0500 Subject: [PATCH 57/59] update django updates django version --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index 1275621..cc027b6 100644 --- a/requirements.in +++ b/requirements.in @@ -1,5 +1,5 @@ ArchivesSnake~=0.9 -Django~=4.0.7 +Django~=4.0.9 django-cors-headers~=3.12 django-csp~=3.7 djangorestframework~=3.13 diff --git a/requirements.txt b/requirements.txt index 8eabb46..5ded228 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ certifi==2022.12.7 # via requests charset-normalizer==3.0.1 # via requests -django==4.0.8 +django==4.0.9 # via # -r requirements.in # django-cors-headers From 62a9df65700558859c9dfa26b591651c0bb29000 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Wed, 15 Feb 2023 17:15:59 -0500 Subject: [PATCH 58/59] upgrade django --- docker-compose.yml | 2 +- requirements.in | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index b6f5464..5e70f9d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: request-broker-db: - image: postgres:10.4 + image: postgres:14.4 environment: - POSTGRES_USER=postgres # name of the application database user - POSTGRES_PASSWORD=postgres # name of the application database user diff --git a/requirements.in b/requirements.in index cc027b6..ad22ffe 100644 --- a/requirements.in +++ b/requirements.in @@ -1,5 +1,5 @@ ArchivesSnake~=0.9 -Django~=4.0.9 +Django~=4.1 django-cors-headers~=3.12 django-csp~=3.7 djangorestframework~=3.13 diff --git a/requirements.txt b/requirements.txt index 5ded228..f4983a2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ certifi==2022.12.7 # via requests charset-normalizer==3.0.1 # via requests -django==4.0.9 +django==4.1.7 # via # -r requirements.in # django-cors-headers From cffe6b84f589637984db7fd467fd87794de2cd03 Mon Sep 17 00:00:00 2001 From: Hillel Arnold Date: Fri, 17 Feb 2023 17:54:54 -0500 Subject: [PATCH 59/59] account for missing subcontainer key --- process_request/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_request/helpers.py b/process_request/helpers.py index 5bded1a..19d982e 100644 --- a/process_request/helpers.py +++ b/process_request/helpers.py @@ -189,7 +189,7 @@ def get_restricted_in_container(container_uri, client): break if status in ["closed", "conditional"]: for instance in item_json["instances"]: - sub_container = instance["sub_container"] + sub_container = instance.get("sub_container", []) if all(["type_2" in sub_container, "indicator_2" in sub_container]): restricted.append(f"{sub_container['type_2'].capitalize()} {sub_container['indicator_2']}") this_page += 1